Indexing and Iteration issues
Mostra commenti meno recenti
Input:
for j=1:NS
tsr(j)=((r(j)*rot)/v); %TSR
end
For loop iteration
X(j) requires tsr(j) and a(j).
Both X(j) and a(j) changes every loop.
Before, I use X1(i-1), X2 (i-1).
After receiving suggestions from this forum to use indexing instead, I revised the code using indexing (still a newbie ^^,)
Any idea on how to approach this? It seems I have to deal with X(j,i-1) where j, indexes to 20 variables (equal to X1,X2, X20) and i has something to do with iteration.
Kind regards,
Wes
5 Commenti
migs
il 26 Apr 2017
migs
il 26 Apr 2017
Greg Dionne
il 27 Apr 2017
Modificato: KSSV
il 28 Apr 2017
Since you're new to MATLAB,
Since you are new to MATLAB, you should do the introductory tutorials (which are highly recommended for all beginners, and they introduce indexing:
Remember to read the MATLAB documentation instead of guessing how it works:
And also read this:
Risposte (0)
Categorie
Scopri di più su Get Started with MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!