plotting in a loop with a function

조회 수: 2 (최근 30일)
Benjamin
Benjamin 2019년 3월 5일
댓글: Benjamin 2019년 3월 5일
I have the following code:
for x = 1:0.01:1.5
z = g(x,rpf);
end
but when I run this (assume my function is correct), I only get that z is equivalent to the last data point. How can I store x and z in a matrix and then plot them?

채택된 답변

Bob Thompson
Bob Thompson 2019년 3월 5일
You need to index z with each loop.
count = 0;
for x = 1:0.01:1.5;
count = count + 1;
z(count) = g(x,rpf);
end
plot(x,z)
  댓글 수: 7
Benjamin
Benjamin 2019년 3월 5일
편집: Benjamin 2019년 3월 5일
Can I ask a follow-up? How could I do an outer loop for different values of rpf and then plot each one on the same plot? And the values for rpf would be like specific values: (i.e. 5.4, 6.7, 5.2 etc) Any ideas how I would do this? When I try it, it just keeps adding move rows to z, rather than just overwriting it on the next loop
Benjamin
Benjamin 2019년 3월 5일
I created a new question, maybe you could answer this question there.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by