Matlab Error, variable, to the left of equals sign

I am assigning a variable in a for loop within a elseif statement and its I have
??? Error: File: Finally.m Line: 223 Column: 9
The expression to the left of the equals sign is not a valid
target for an assignment.
when I am just assigning a variable to a number....

답변 (1개)

Dr. Seis
Dr. Seis 2012년 12월 12일
You said you are "just assigning a variable to a number." You mean like this:
>> a = 2
a =
2
>> 3 = a
??? 3 = a
|
Error: The expression to the left of the equals sign is not a valid target for an assignment.
This is not allowed.

카테고리

도움말 센터File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

질문:

2012년 12월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by