필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 2 (최근 30일)
Carlos Nunez
Carlos Nunez 2018년 7월 5일
마감: MATLAB Answer Bot 2021년 8월 20일
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
Carlos Nunez
Carlos Nunez 2018년 7월 5일
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 2018년 7월 5일
Can you Please help me out with this

답변 (1개)

James Tursa
James Tursa 2018년 7월 5일
Is this what you want:
y = your vector
yr = reshape(y,10,[]);
result = yr(5:10,:);
result = reshape(result,1,[]);
  댓글 수: 2
Carlos Nunez
Carlos Nunez 2018년 7월 5일
편집: James Tursa 2018년 7월 6일
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 2018년 7월 6일
편집: James Tursa 2018년 7월 6일
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.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by