avec app designer je veux passé une variable en entree de mon propre component
3 次查看(过去 30 天)
显示 更早的评论
Bonjour, j'ai créé une app ainsi qu'un component, j'aimerai que ce dernier puisse travailler sur un Axes en particulier (je ne souhaite pas utiliser gca car j'en ai plusieur).
Merci d'avance
0 个评论
回答(1 个)
Angelo Yeo
2023-12-22
Please excuse my answer is in English. I do not speak French, but I was accidently the first one who would answer your question.
1) When you add axes into canvas, you would get object names for each axis. By default, the axes will have their names "app.UIAxes", "app.UIAxes2", etc accordingly.
2) You can pass these axis objects to functions. For example, plot provides options to use axis as its first input argument in order to specify in which axes you want to plot graphes.
plot(ax, ___ )
Hence, for example, if you would want to plot a graph on the first UIAxes, you can code something like this:
x = 1:10; y = 1:10;
plot(app.UIAxes, x, y); % instead of only plot(x, y);
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!