I have a square matrix of coefficients f
, and would like to be able to solve these algebraically as a system of simultaneous equations (all the equations f[i,1] + f[i,2]x + ... + f[i, n]z = T
for the same T
)- the problem is that I don't know how large the matrix is, or what the value of T
is going to be.
Is there a way that I can generate a set of equations from a matrix of coefficients, if I don't know in advance how many variables I will need, so that I can use the solve
function?