How to plot 2 different graphs at GUI?

4 ビュー (過去 30 日間)
sama
sama 2015 年 10 月 11 日
コメント済み: sama 2015 年 10 月 12 日
Hello all, i am writing a code in GUI that by pushing a bottom, calculate some mathematic and plot a graph. Then, i need by these result, some other calculation done and another graph pupup without any pushing bottom. Could you please help me for second graph? Thanks a lot

採用された回答

Walter Roberson
Walter Roberson 2015 年 10 月 11 日
function button1_callback(hObject, eventdata, handles)
f2 = figure(2);
ax2 = axes('Parent', f2);
some_calculated_value = sum(randn(419, 392), 2); %calculate some mathematic
plot(some_calculated_value, 'Parent', ax2); %put up first graph
some_other_calculated_value = exp(-sqrt(some_calculated_value)); %some other mathematic
f3 = figure(3);
ax3 = axes('Parent', f3);
plot(some_other_calculated_value, 'Parent', ax3); %pop up another graph
  1 件のコメント
sama
sama 2015 年 10 月 12 日
Thanks a lot Roberson. It worked but I think I asked my question not clearly. I am looking to have one of those plot at GUI and another one in another GUI environment.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by