Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how can i gather points of a graph when its running a number of times?

2 Ansichten (letzte 30 Tage)
Carlos Nunez
Carlos Nunez am 5 Jul. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Let say I have an X number of points like 100, so for every 10 points I want the last 5 points so when its 20 I want the last 5 points and so on
  3 Kommentare
Carlos Nunez
Carlos Nunez am 5 Jul. 2018
y=sin(x). this would be my input, what I want is for every 10 points I want 5-10 and once I have 20 points I want 15-20 and so on.

Antworten (1)

James Tursa
James Tursa am 5 Jul. 2018
Is this what you want:
y = your vector
yr = reshape(y,10,[]);
result = yr(5:10,:);
result = reshape(result,1,[]);
  2 Kommentare
Carlos Nunez
Carlos Nunez am 5 Jul. 2018
Bearbeitet: James Tursa am 6 Jul. 2018
No what I want let's say this is the code
y=1:100
x=sin(y)
for y=length(x)
if y<5
This is where I get stuck I want to be able to tell my for loop I only want whatever is greater after 5 so 5-10 and the process would repeat itself again but this time the numbers would be through 10-20 and the for loop would only give 15-20
James Tursa
James Tursa am 6 Jul. 2018
Bearbeitet: James Tursa am 6 Jul. 2018
As near as I can tell from your wording, that is exactly what my posted code does. Since you state this is not what you want, you will need to provide us with the explicit output you want for this example before we can understand. I.e., give us the exact numbers in the resulting vector that you would want for a result.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by