construct vectors if cycle

hello!
i need to construct vectors xx and yy. The problem is that at each cycle the past xx and yy is deleted but i want the opposite. i want them to keep the past information and grow at each cycle. what can i do?
i appreciate any help. thank you very much.

답변 (1개)

Walter Roberson
Walter Roberson 2012년 10월 3일

1 개 추천

Before the loop,
xx = [];
yy = [];
Then in the loop, change the xx and yy statements to
xx = [xx, x(iPeaks1:iPeaks2)];
yy = [yy, y(iPeaks1:iPeaks2)];

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

joo
2012년 10월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by