Loop counter help please
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Using a FOR loop, perform the following manipulations suppress the output.
- new_A = A + loop counter
- new_B= B – loop counter
- new_C= C * loop counter
- new_D= D / loop counter
- new_E= E (Does not need to be done inside the FOR loop)
0 Kommentare
Antworten (1)
KSSV
am 26 Feb. 2019
Check the below pseudo code.
N = 10 ;
iwant = zeros(N,1) ;
for i = 1:N
iwant(i) = i ;
end
0 Kommentare
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!