Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

The expression to the left of the equals sign is not a valid target for an assignment.

2 vues (au cours des 30 derniers jours)
Clare Ferguson
Clare Ferguson le 24 Sep 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
I am very new to MATLAB and am trying to workout the distance between points which have been interpolated in a previous question. The following is what I have entered into MATLAB and am getting an Error saying that 'The expression to the left of the equals sign is not a valid target for an assignment'. I can't see any brackets missing from my functions.
X1 = [0,0;100,140.1235];
d1 = pdist(X1);
X2 = [100,140.1235;200,258.7626];
d2 = pdist(X2);
X3 = [200,258.7626;300,342.3485];
d3 = pdist(X3);
X4 = [300,342.3485;400,425.9343];
d4 = pdist(X4);
X5 = [400,425.9343;500, 509.5202];
d5 = pdist(X5);
X6 = [500,509.5202;558,558];
d6 = pdist(X6);
Total_Length = d1+d2+d3+d4+d5+d6
  3 commentaires
KSSV
KSSV le 24 Sep 2017
Why don't you specify the line number of error?
Image Analyst
Image Analyst le 24 Sep 2017
Please copy and paste ALL THE RED TEXT that you see. this will include the line number, the actual line of code that threw the error, and the actual error message. http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

Réponses (1)

Niraj Gadakari
Niraj Gadakari le 26 Sep 2017
Modifié(e) : Niraj Gadakari le 26 Sep 2017
The given code works fine when I executed. I suggest clearing variables in your workspace and try to execute the code. Type the following command in the Command Window and then execute the code: >> clear

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by