1

我需要定义一个返回符号矩阵(sym)的函数。它需要 4 个输入参数——2 个符号矩阵和 2 个整数。我怎么做?

这就是我试图做的-

%my function
function F = matrix(F, F4, i, j)

...

F=...;

end

%calling it in a different file

syms M1;
M1 = ...;

syms M2;
M2 = ...;

syms M3;
M3 = matrix(M1,M2,1,2);
4

1 回答 1

0

我已经完成了这个简单的测试;

function L = test(A,B,c,d)
syms tmp1 tmp2

tmp1 = c;
tmp2 = d;

L = tmp1*A + tmp2*B;

end

其中AB已经是符号矩阵。

于 2013-04-07T19:23:15.170 回答