I want to know how to assing variable value depending on the value it self. Explained in detail below.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
akash sonnad
il 7 Gen 2019
Commentato: akash sonnad
il 8 Gen 2019
Consider I=[2,3,5];
now depending on the values of I i want to assign other variables as
r2=2, r3=3, r5=5.
If the elements in I are huge, how do I assign the index in the variable r in a simple for loop ??
1 Commento
Stephen23
il 7 Gen 2019
"now depending on the values of I i want to assign other variables as r2=2, r3=3, r5=5."
That is not a good approach to writing code. Read this to know why:
It would be much simpler and more efficient to just use indexing.
Risposta accettata
Più risposte (1)
Ganesan S
il 7 Gen 2019
Dear Sir,
Why do you want to assign a variable (I) to a different variable (r)? I(i) itself is will do the work.
Try this:
for i=1:length(I)%if I is either row vector or column vector
r(i)=I(i);
end
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements 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!