필터 지우기
필터 지우기

my code is runing but I can not get the plot out

조회 수: 1 (최근 30일)
wenchong chen
wenchong chen 2021년 4월 4일
댓글: DGM 2021년 4월 4일
hi, here is my code, the plot windows pop out but there is no pot on them, whats wrong with my code?
hold on
f = @(x) x.^3 - (9)*x.^2 + 3.8197
xl = -1000
xu = 1000
iter = 1
xm = (xl+xu)/2
error = 20
while error > 0.001
if (f(xm).*f(xl))<0
xu=xm
xm2 = (xl+xu)/2
error = (xm2-xm)/xm2
error = abs(error)
xm = xm2
else
xl=xm
xm2 = (xl+xu)/2
error = (xm2-xm)/xm2
error = abs(error)
xm = xm2
end
xm= (xl+xu)/2
subplot(2,1,1)
plot(iter,xm)
subplot(2,1,2)
plot(iter,error)
iter = iter + 1;
end

답변 (2개)

Walter Roberson
Walter Roberson 2021년 4월 4일
subplot(2,1,1)
plot(iter, xm, '*-')
subplot(2,1,2)
plot(iter, error, '*-')
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 4월 4일
subplot(2,1,1)
plot(iter, xm, '*-')
hold on
subplot(2,1,2)
plot(iter, error, '*-')
hold on
Your existing hold does not apply to the new axes you created by subplot()

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


DGM
DGM 2021년 4월 4일
편집: DGM 2021년 4월 4일
You're trying to plot things inside a loop. That usually ends up just creating headaches. Store the results to vectors and then plot the vectors. Since we don't know how long the vectors will be, I just chose to let them grow as necessary.
Try this:
clf
f = @(x) x.^3 - (9)*x.^2 + 3.8197
xl = -1000
xu = 1000
iter = 1
xm = (xl+xu)/2
error = 20
xmvec=[];
errvec=[];
while error > 0.001
if (f(xm)*f(xl))<0
xu=xm
xm2 = (xl+xu)/2
error = (xm2-xm)/xm2
error = abs(error)
xm = xm2
else
xl=xm
xm2 = (xl+xu)/2
error = (xm2-xm)/xm2
error = abs(error)
xm = xm2
end
xmvec=[xmvec (xl+xu)/2];
errvec=[errvec error];
iter = iter + 1;
end
subplot(2,1,1)
plot(1:iter-1,xmvec)
subplot(2,1,2)
plot(1:iter-1,errvec)
  댓글 수: 2
wenchong chen
wenchong chen 2021년 4월 4일
this worked, thank you very much.
I got it , that what I was thinking but I dont know how to do. what is the iter doing in the second line under while? so for both xmvec and errvec, the loop will add one number to vectors automaticly?
DGM
DGM 2021년 4월 4일
That lone iter line was just something I threw in there so I could see what was going on. I didn't mean to include that.
Yes. The vectors will grow in length since x=[x x2] is concatenation of x and x2. It is the same thing as cat(2,x,x2).
Generally, making arrays grow in a loop isn't good practice. It's slow, but for something like this where the vectors are small, the task is noncritical, and we don't know the final size to begin with, I'd say it's acceptable.

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

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by