Azzera filtri
Azzera filtri

Proper Syntax for a Nested Loop

1 visualizzazione (ultimi 30 giorni)
Frank Lehmann
Frank Lehmann il 7 Ago 2023
Commentato: Matt J il 7 Ago 2023
Hi All,
Im having issues with following code where I believe I may need an additional nested loop.Basically I want the first 2 rows for the 2nd column to reduce by 1 and rows 3 onwards to stay the same value as columns 2. The result Im getting is [ 74 15 12 33] the first 2 elements are correct but the last two should read [24 44], the final result I wish [ 74 15 24 44] I know I need to insert an additional loop somwhere could anyone guide me or provide have a simpler solution on how to reduce column 2 from 1 to 0 from rows 3 onwards?
motData=[12,2;37,3;11,4;15,2];
motData=sortrows(motData,'descend')
i=zeros(size(motData));
p=size(motData,1)
for t =1:p
newmodVector1(t)=(motData(t,1).*(motData(t,2)-1))
end
Thanks,
Frank

Risposta accettata

Voss
Voss il 7 Ago 2023
Modificato: Voss il 7 Ago 2023

No additional loop is necessary.

You can replace your existing loop with this one:

for t =1:p
    newmodVector1(t)=motData(t,1).*(motData(t,2)-(t<=2));
end

Or you can do it without a loop at all:

newmodVector1=(motData(:,1).*(motData(:,2)-((1:p).'<=2))).';

Omit the final transpose (.') if you want newmodVector1 to be a column vector.

  2 Commenti
Frank Lehmann
Frank Lehmann il 7 Ago 2023
Thanks Voss much appreciated!!
Matt J
Matt J il 7 Ago 2023
@Frank Lehmann Since Voss provided a valid solution for you should should Accept-click the answer. It would also be good if you went back to do the same with your previous posts.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Prodotti


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by