Fix one curve, while change another

2 ビュー (過去 30 日間)
TARAM
TARAM 2019 年 10 月 21 日
編集済み: TARAM 2019 年 10 月 22 日
Hi dear matlab users. Is it possible to fix one curve on axis and update another one using, for exhample, slider.
Of course i can plot two curves every time i move slider's button:
1) sample curve, that does not change;
2) changeable curve;
But i dont think that this solution is rational.
  1 件のコメント
darova
darova 2019 年 10 月 21 日
Can you be more specific? Show some examples? ImageS?

サインインしてコメントする。

採用された回答

Jon
Jon 2019 年 10 月 21 日
編集済み: Jon 2019 年 10 月 21 日
Here is one approach. You can modify the YData property of the second curve. Here is a little example
x = 1:10
y1 = x;
y2 = x.^2
p = plot(x,y1,x,y2)
% change second curve to plot the sin(x) instead
% just for demo, pause long enough to see original curve before
% changing to the new one
pause(3)
p(2).YData = sin(x)
If you are doing this within a MATLAB GUI built using app designer you could do something like this with your callbacks. In this toy example, the button push make the plot with the original two curves and then the slider modifies the second curve
% Button pushed function: Button
function ButtonPushed(app, event)
% make initial plot
x = 1:10;
y1 = x;
y2 = x.^2;
plot(app.UIAxes,x,y1,x,y2)
end
% Value changing function: Slider
function SliderValueChanging(app, event)
changingValue = event.Value;
% get the current YData for the original curve
x = app.UIAxes.Children(1).XData; % first child is last curve plotted
% change the original curve according to slider value
app.UIAxes.Children(1).YData = changingValue/100*x.^2;% just an example of changing curve
end
end

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by