error in eval command
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mudasir Ahmed
il 1 Ott 2014
Commentato: Mudasir Ahmed
il 1 Ott 2014
clear all clc
a=[12 2 10 20 1 20]; b=[5 21 4 1 4 5]; c=[23 18 13 10 13 17]; d=[8 3 14 6 19 1];
for x=1:6 eval(sprintf('ch%d=[a(1,x) b(1,x) c(1,x) d(1,x)]',x)); end
for y=1:6 eval(sprintf('obj%d=[ch%d(1,1)+(2*ch%d(1,2))+(3*ch%d(1,3))+(4*ch%d(1,4))-30]',y)); end
output of first loop (correct response) ch1 = 12 5 23 8 ch2 = 2 21 18 3 ch3 = 10 4 13 14 ch4 = 20 1 10 6 ch5 = 1 4 13 19 ch6 = 20 5 17 1
in above program, matlab execute and return correct response of first loop, but give error in second loop (Error: This statement is incomplete. ) i want to execute following instruction using eval function for all ch1ch2.....ch6 variables, e.g ch1=[12 5 23 8] a=12 b=5 c=23 d=8 obj=a+2b+3c+4d-30
kindly help me. thanx in advance
1 Commento
Oleg Komarov
il 1 Ott 2014
Modificato: Oleg Komarov
il 1 Ott 2014
Just do NOT use eval(). You are building a nightmare for yourself as the example code proves.
Risposta accettata
Thorsten
il 1 Ott 2014
for y=1:6
eval(sprintf('obj%d=[ch%d(1,1)+(2*ch%d(1,2))+(3*ch%d(1,3))+(4*ch%d(1,4))-30]',[y y y y y]));
end
Più risposte (1)
Michael Haderlein
il 1 Ott 2014
100 % agree with Oleg. Do not use these statements: http://www.mathworks.com/matlabcentral/answers/57445-faq-how-can-i-create-variables-a1-a2-a10-in-a-loop
To archieve this obj array, you can do the following:
a=[12 2 10 20 1 20]; b=[5 21 4 1 4 5]; c=[23 18 13 10 13 17]; d=[8 3 14 6 19 1];
ch=cat(1,a,b,c,d)';
obj=ch*(1:4)'-30;
Alternatively, you define a,b,c,d as column vectors and concatenate along the second dimension without transposing. In any case, this is the way you should do it in Matlab.
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!