Matlab Error, variable, to the left of equals sign

1 vue (au cours des 30 derniers jours)
scott
scott le 12 Déc 2012
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 commentaire
Azzi Abdelmalek
Azzi Abdelmalek le 12 Déc 2012
Post the part of code which causes error

Connectez-vous pour commenter.

Réponses (1)

Dr. Seis
Dr. Seis le 12 Déc 2012
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.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by