general troubleshooting advice requested: preventing plot overwrites in loop.

조회 수: 1 (최근 30일)
cris
cris 2021년 6월 27일
편집: Cris LaPierre 2021년 6월 29일
I obtain erratic output when using 'plot' function in for...end loops. Some scripts work perfectly but others using identical syntax and the same data inputs overwrite all but the last plot. Am using 'figure' to create new plot frames within the loop process. I have fixed some previous problems but am not sure how. I am using timeseries (timetable) financial data from multiple sources. There is never a system error message accompanying the malfunctioning programs. Any advice from expert users on possible source(s) of the problem would be greatly appreciated. It's a big time waster.
  댓글 수: 1
John D'Errico
John D'Errico 2021년 6월 27일
How can we help you on a question this general? Your code is written with bugs in it. Apparently it does not do exactly what you think it does, and some times it does something strange. The answer? Don't do something strange. Write better code, that will be easier to debug. If you seriously want better help, then you need to show the code that does strange stuff.
My guess is, that code will be convoluted, lengthy spaghetti. So better yet? LEARN TO USE THE DEBUGGER. Use it, tracing through your code to find where that something strange happens.

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

답변 (1개)

Cris LaPierre
Cris LaPierre 2021년 6월 27일
I obtain erratic output when using 'plot' function in for...end loops. Some scripts work perfectly but others using identical syntax and the same data inputs overwrite all but the last plot.
If the data is the same, then the code is more different than you think. If your plotting is happening inside a for loop, then there are a couple things to be aware of.
  • caling plot without using figure will replace the previous figure with the new one. This is one way to end up with just the last plot.
  • calling plot with figure will create a new figure for each loop. The last figure will contain the last plot, but you wlil also have a figure for all the other plots.
  • Use hold on when you want to use multiple plot commands to add to a plot (but remember to have a corresponding hold off).
Ch 9 of MATLAB Onramp covers plotting fundamentals, including using hold.
In order to address what is happening in your specific case you will need to share your code.
  댓글 수: 3
Cris LaPierre
Cris LaPierre 2021년 6월 28일
편집: Cris LaPierre 2021년 6월 29일
Share your plotting code. Speaking in abstract is not adding any clarity.
cris
cris 2021년 6월 29일
Problem resolved. It wasn't a coding issue. Thanks for follow up.

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

카테고리

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

제품


릴리스

R2012a

Community Treasure Hunt

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

Start Hunting!

Translated by