help --- symbolic expression or function

2 ビュー (過去 30 日間)
justlikethat
justlikethat 2021 年 6 月 11 日
コメント済み: justlikethat 2021 年 6 月 11 日
I've created a code for the symbol variables.
But I'm very embarrassed because the same error keeps coming out.
I'd appreciate it if you could tell me the solution.
syms x y z
one = sym('3*x +2*y - z = 10');
two = sym('-x + 3*y + 2*z = 5');
three = sym('x -y - z = -1');
[x,y,z] = solve(one,two,three)
error messeage ---->
The text vector and string type of the first argument can only specify variables or numbers. Use 'str2sym' to evaluate the string type and the text vector representing the symbol expression.
Error occurred: sym>tomupad (Line 1296)
S = convertChar(x);
Error occurred: sym (Line 234)
S.s = tomupad(x);
Error occurred: symsolve (Line 2)
one = sym('3*x +2*y - z == 10');
My grammar may be wrong because I am not good at English. Thank you!

採用された回答

Walter Roberson
Walter Roberson 2021 年 6 月 11 日
The code you are using has not been valid since about R2017b.
syms x y z
one = str2sym('3*x +2*y - z = 10');
two = str2sym('-x + 3*y + 2*z = 5');
three = str2sym('x -y - z = -1');
[x,y,z] = solve(one,two,three)
x = 
y = 
5
z = 
but better would be
syms x y z
one = 3*x +2*y - z == 10;
two = -x + 3*y + 2*z == 5;
three = x -y - z == -1;
[x,y,z] = solve(one,two,three)
x = 
y = 
5
z = 
  1 件のコメント
justlikethat
justlikethat 2021 年 6 月 11 日
Thank you so much!
Looks like the data I saw was out of date.

サインインしてコメントする。

その他の回答 (1 件)

KSSV
KSSV 2021 年 6 月 11 日
syms x y z
one = 3*x +2*y - z == 10;
two = -x + 3*y + 2*z == 5;
three = x -y - z == -1 ;
s = solve({one,two,three},x,y,z) ;
[s.x s.y s.z]
  1 件のコメント
justlikethat
justlikethat 2021 年 6 月 11 日
Thank you so much!
Looks like the data I saw was out of date.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAssumptions についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by