Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在表格上有一个方程系统:
eq1 : q = a*x+b*y; eq2 : r = c*x+d*y;
我希望它得到系数矩阵,在这个简单的例子中是:
T : matrix([a,b], [c,d]);
这样我就可以将方程组表示为:
eq3 : Q = T . X;
因为我想T在进一步的矩阵运算中使用。(原始方程是我从我的问题中得到的,我不想手动将它们变成矩阵形式,因为这就是这种程序的用途。但我就是想不通)
T
我想你想要coefmatrix和augcoefmatrix。
coefmatrix
augcoefmatrix