The expression to the left of the equals sign is not a valid target for an assignment
12 次查看(过去 30 天)
显示 更早的评论
both x and y has been introduced by syms. This seems to me perfectly correct. What is wrong here?
>> solve(5*x + 4*y = 3, x-6*y = 2)
solve(5*x + 4*y = 3, x-6*y = 2)
↑
Error: The expression to the left of the equals sign is not a valid target for an assignment.
Then I tried this
>> solve('5*x + 4*y = 3, x-6*y = 2')
Warning: Support of character vectors will be removed in a future release. Character vectors can be used only for variable names and
numbers. Instead, to create symbolic expressions first create symbolic variables using 'syms'. To evaluate character vectors and
strings representing symbolic expressions, use 'str2sym'.
> In sym>convertExpression (line 1581)
In sym>convertChar (line 1486)
In sym>tomupad (line 1236)
In sym (line 215)
In solve>getEqns (line 406)
In solve (line 226)
Warning: Do not specify equations and variables as character vectors. Instead, create symbolic variables with syms.
> In solve>getEqns (line 446)
In solve (line 226)
ans =
struct with fields:
x: [1×1 sym]
y: [1×1 sym]
It says something about x and y. Would you please explain the situation in a simple way?
Thank you.
0 个评论
采纳的回答
Walter Roberson
2020-11-8
编辑:Walter Roberson
2020-11-8
syms x y
sol = solve(5*x + 4*y == 3, x-6*y == 2);
pretty(sol.x), pretty(sol.y)
2 个评论
Walter Roberson
2020-11-8
You used
solve(5*x + 4*y = 3, x-6*y = 2)
but = is the assignment operator, not the comparison operator.
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!