Create a plot with a function in a loop?

조회 수: 1 (최근 30일)
Julien B
Julien B 2015년 11월 25일
편집: Julien B 2015년 11월 25일
Hi,
here is my code:
E = zeros(1,10);
Ith = 100
for k = 1:1:10
N=2^k ;
I = 0;
for i=1:1:N
I = I + h*f(((xmin+i*h)+(xmin+(i-1)*h))/2);
end
E(k) = (I - Ith)/Ith;
plot (k, E(k))
end
I don't find out how create a plot with E(k) in terms of k, for k=1 to 10 in just one plot, so 10 points as the result. Thanks

채택된 답변

Ingrid
Ingrid 2015년 11월 25일
you have to use the hold on command such that you are adding with plot to the current figure without overwriting your previous plots
figure
hold on
  댓글 수: 1
Julien B
Julien B 2015년 11월 25일
편집: Julien B 2015년 11월 25일
Right, thank you very much!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by