Error when plot loaded .mat file in app designer

조회 수: 5 (최근 30일)
Aron Horvath
Aron Horvath 2021년 7월 2일
댓글: Aron Horvath 2021년 7월 2일
Hi !
I'm trying to plot data got from a .mat file but the following error pops up:
Error using plot
Unrecognized property x for class Line.
Error in app1/draw (line 25)
plot(app.UIAxes, t,x_grad(:,1))
Here are the code what I use:
I save the variables in two separate files
save('w_gradiens_lotka','w')
save('x_gradiens_lotka','x')
where x is a 61x2 matrix and w 61x1 vector
Then I load the two files and plot:
t=0:0.05:12;
w_grad = load('w_gradiens_lotka.mat','w');
x_grad = load('x_gradiens_lotka.mat','x');
%I have three charts:
drawnow
plot(app.UIAxes, t,x_grad(:,1))
drawnow
plot(app.UIAxes2, t,x_grad(:,2))
drawnow
plot(app.UIAxes3, t,w_grad)
drawnow
I dont know what did I miss here ...
Thank you for your help !

채택된 답변

Geoff Hayes
Geoff Hayes 2021년 7월 2일
Aron - I suggest you use the MATLAB debugger to step through the code and see what the variables
w_grad = load('w_gradiens_lotka.mat','w');
x_grad = load('x_gradiens_lotka.mat','x');
look like. I suspect that both are structures and that x_grad might have a field named x. In which case, your code would need to look like
plot(app.UIAxes, t,x_grad.x(:,1))
  댓글 수: 1
Aron Horvath
Aron Horvath 2021년 7월 2일
Yes, it was a struct, not a vector that was the thing what I missed, Thank you !

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by