How to plot histogram on axis in App designer
34 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Med Future
am 15 Jun. 2022
Kommentiert: Geoff Hayes
am 17 Jun. 2022
Hello, Everyone i hope you are doing well.
I want to plot histogram on app.ULAxis in app designer
How can i do that?
x = randn(10000,1);
h = histogram(x)
0 Kommentare
Akzeptierte Antwort
Geoff Hayes
am 16 Jun. 2022
x = randn(10000,1);
h = histogram(app.ULAxis, x);
2 Kommentare
Geoff Hayes
am 17 Jun. 2022
@Stephen john ULAxis is mentioned by the OP in the question: "I want to plot histogram on app.ULAxis in app designer ".
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!