Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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

2 visualizzazioni (ultimi 30 giorni)
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 Commenti
Carlos Nunez
Carlos Nunez il 5 Lug 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.

Risposte (1)

James Tursa
James Tursa il 5 Lug 2018
Is this what you want:
y = your vector
yr = reshape(y,10,[]);
result = yr(5:10,:);
result = reshape(result,1,[]);
  2 Commenti
Carlos Nunez
Carlos Nunez il 5 Lug 2018
Modificato: James Tursa il 6 Lug 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 il 6 Lug 2018
Modificato: James Tursa il 6 Lug 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.

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by