select parts of vector with loops
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
jj27
am 12 Okt. 2018
Beantwortet: Nicolas Schmit
am 15 Okt. 2018
So I know this is basic matlab stuff but I don't get it right now. lets say i have vector Y, now i want to remove values below a certain vallue from the first ten data points the second ten data points etc. I have to put in a loop so I can add more functions to it. What i mean is select from Y point 1:10,11:20,21:30 etc and do it with a loop.
Can someone help?
1 Kommentar
Stephen23
am 12 Okt. 2018
@ Kjell Lemmen: it is not very clear what you are trying to do. Please show us an example, complete with both input and output vectors.
Akzeptierte Antwort
Nicolas Schmit
am 15 Okt. 2018
Y = rand(100, 3);
d = 10;
for k=1:size(Y, 1)/d
% Select a chunk of data from Y
index = d*(k-1)+1:d*k;
Ytemp = Y(index, :);
% Do what you want to Ytemp
% Put the data back in Y
Y(index, :) = Ytemp;
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!