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.
我想分配一个矩阵,符号元素的向量,一个矩阵,值的向量......如何?
就像是:
matrix([a,b,c,d]) = matrix([1,2,3,4])
MuPad 中哪个是不正确的……那怎么办?谢谢
使用列表而不是矩阵:
[a,b,c,d] := [1,2,3,4];
您还可以分配不同的类型,例如矩阵:
[A,b,c,d] := [matrix([[1,2],[3,4]]),2,3,4];