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.
私はこれを持っています:
syms X Y; F=X*Y; A=ones(2); B=ones(2);
どうしてsubs (F,{X,Y},{A,B}) == ones(2)?
subs (F,{X,Y},{A,B}) == ones(2)?
どうすれば入手できます2*ones(2)か?
2*ones(2)
これを最初に試して、初期X化しYて、シンボリック行列として
X
Y
X=sym('X',[2 2]); Y=sym('Y',[2 2]);