How to plot histogram on axis in App designer

51 views (last 30 days)
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)

Accepted Answer

Geoff Hayes
Geoff Hayes on 16 Jun 2022
@Med Future - you can specity the axes as detailed in this example
x = randn(10000,1);
h = histogram(app.ULAxis, x);
  2 Comments
Geoff Hayes
Geoff Hayes on 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 ".

Sign in to comment.

More Answers (0)

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!