Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

2 vues (au cours des 30 derniers jours)
Carlos Nunez
Carlos Nunez le 5 Juil 2018
Clôturé : MATLAB Answer Bot le 20 Août 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 commentaires
Carlos Nunez
Carlos Nunez le 5 Juil 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.
Carlos Nunez
Carlos Nunez le 5 Juil 2018
Can you Please help me out with this

Réponses (1)

James Tursa
James Tursa le 5 Juil 2018
Is this what you want:
y = your vector
yr = reshape(y,10,[]);
result = yr(5:10,:);
result = reshape(result,1,[]);
  2 commentaires
Carlos Nunez
Carlos Nunez le 5 Juil 2018
Modifié(e) : James Tursa le 6 Juil 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 le 6 Juil 2018
Modifié(e) : James Tursa le 6 Juil 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.

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by