Visualizing figure in app designer
1 回表示 (過去 30 日間)
古いコメントを表示
Hi I have a function in callback of app designer that returns few figures. How do i plot them in UIAxes. I know that it is possible to use plot(app.UIAxes, x, y) but I havent got access to x and y coordinates of this figure.
Thank you for all your help
6 件のコメント
Adam Danz
2023 年 9 月 15 日
> plot(ax2,XYVAL(:,1),XYVAL(:,2));
Those are the x and y coordinates. Why don't you have access to them?
採用された回答
Adam Danz
2023 年 9 月 15 日
> Is it possible to access this x, y coordinates from the figure level or do I need to change the function so that it would return coordinates?
It's possible to extract the data from the figure but it's much better to return the values from the function.
function [___, x, y] = generatTrack(__)
...
x = XYVAL(:,1);
y = XYVAL(:,2);
plot(ax2,x,y);
end
or
function [___, XYVAL] = generatTrack(__)
...
plot(ax2,XYVAL(:,1),XYVAL(:,2));
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!