i cant plot to UIAxes

1 回表示 (過去 30 日間)
khaled barakat
khaled barakat 2018 年 3 月 31 日
編集済み: Greg 2018 年 4 月 4 日
Hello i have been working on my project but currently i have been stuck on this problem where i cant plot to my UIAxes using my GUI program (app designer) here is my code :
(function 1)
rawdata = uigetfile('*.mat','Select the MATLAB code files', 'MultiSelect', 'on');
varlist = who('-file',rawdata);
app.ListBox.Items = varlist(1);
setappdata(0,'onedata',varlist);
in this function i should upload my .mat file in so i can plot in UIAxes in function 2 :
value = app.StateButton.Value;
x=getappdata(0,'onedata');
plot(app.UIAxes,x);
but each time it tells me
Error using plot
Invalid first data argument.
please help.
  2 件のコメント
Birdman
Birdman 2018 年 3 月 31 日
Can you share your app?
khaled barakat
khaled barakat 2018 年 4 月 3 日

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

採用された回答

Greg
Greg 2018 年 3 月 31 日
x=getappdata(0,'onedata');
Gives you the cell array output from the call to who. You can't plot that in any axes.
  2 件のコメント
khaled barakat
khaled barakat 2018 年 4 月 3 日
編集済み: khaled barakat 2018 年 4 月 3 日
ok so is there a way i can plot .mat file in uiaxes ? if so how ?
Greg
Greg 2018 年 4 月 4 日
編集済み: Greg 2018 年 4 月 4 日
You have to load variables from the .mat file, not just reference the cellstr representation of the variable names. I'm sure there are lots of examples on MATLAB Answers for plotting from a .mat file.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by