Plots in App Designer

조회 수: 2 (최근 30일)
Lars Duelund
Lars Duelund 2019년 4월 19일
답변: Cris LaPierre 2019년 4월 20일
Dear All
I am trying to write a simple data analysis program in the App designer, but i have probme with plotting my dat. I do the following:
  1. Load my data and plot them in a set of Axis. Works fine
  2. locate the Peaks in the data, with Peakfinder, and lable them with text. Work fine
  3. Now I need the area under the curve, så i fit a "baseline" to the data. Works fine with a button
  4. Now I plot the baseline into the same set of Axis (Within in the same "button") and it works fine the first time, and I have the two plot in Axis. BUT if i press the botton once more I only have the baseline (last plot). And then for evry second time i pres the button I have two plots, the other times I have one line
The following minimal code reproduces the behavour:
plot(app.UIAxes,app.data(:,1),app.data(:,2),'r');
hold(app.UIAxes);
plot(app.UIAxes,app.data(:,1),app.bsl,'g');
Any idea of what is going on or where I can lear more? It is clear what the problem is?
I use Matlab R 2019a on a WIN10 64 bit HP computer

채택된 답변

Cris LaPierre
Cris LaPierre 2019년 4월 20일
What behavior do you want? Just the two plots, or do you want to add the new plots to the old ones?
If you only want the two, the issue is you are not using hold correctly. This syntax toggles hold each time. If it's on, you are toggling it off and vice versa. I think you want to do this instead.
plot(app.UIAxes,app.data(:,1),app.data(:,2),'r');
hold(app.UIAxes,'on');
plot(app.UIAxes,app.data(:,1),app.bsl,'g');
hold(app.UIAxes,'off');

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by