필터 지우기
필터 지우기

cell array error using equationsToMatrix function

조회 수: 1 (최근 30일)
Emiliano Rosso
Emiliano Rosso 2023년 4월 6일
답변: Emiliano Rosso 2023년 4월 6일
Hi
in reference to :
I must use this code :
syms x y z
eqn1 = 2*x + y + z == 2;
eqn2 = -x + y - z == 3;
eqn3 = x + 2*y + 3*z == -10;
[A,B] = equationsToMatrix([eqn1, eqn2, eqn3], [x, y, z])
but using cell array.
So I do:
a=cell(1,3);
b=cell(1,3);
a{1}=eqn1;a{2}=eqn2;a{2}=eqn3;
b{1}=x;b{2}=y;b{3}=z;
Using one cell at a time I obtain the same results :
[A,B] = equationsToMatrix([a, [x, y, z]);
[A,B] = equationsToMatrix([eqn1, eqn2, eqn3], b)
but when I use both :
[A,B] = equationsToMatrix(a, b)
Check for missing argument or incorrect argument data type in call to function 'equationsToMatrix'.
How to solve this error?
Thanks!

채택된 답변

Emiliano Rosso
Emiliano Rosso 2023년 4월 6일
Instead of using cell use syms:
a=syms(1,3);
b=syms(1,3)
a(1)=eqn1;a(2)=eqn2;a(3)=eqn3;
b(1)=x;b(2)=y;b(3)=z;
[A,B] = equationsToMatrix(a, b);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by