avec app designer je veux passé une variable en entree de mon propre component

1 次查看(过去 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

回答(1 个)

Angelo Yeo
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);

标签

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!