Encoundered error during compiling program for solving differential equation ode45 using MATLAB R2013a.
1 次查看(过去 30 天)
显示 更早的评论
Came across 'The expression to the left of the equals sign is not a valid target for an assignment' during compiling ode45 differential equation solver line 29, what would be the possible error.
0 个评论
回答(2 个)
Steven Lord
2016-6-2
I believe line 29 is:
if s=0;
A single equal sign performs assignment. Two equal signs performs comparison.
x = 5; % Assign the value 5 to x
x == 5 % Returns true if x is equal to 5 and false if it is not.
The if keyword wants a comparison, not an assignment, as its condition.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!