i cant plot to UIAxes
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
khaled barakat
el 31 de Mzo. de 2018
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 comentarios
Respuesta aceptada
Greg
el 31 de Mzo. de 2018
x=getappdata(0,'onedata');
Gives you the cell array output from the call to who. You can't plot that in any axes.
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!