How to plot histogram on axis in App designer
조회 수: 34 (최근 30일)
이전 댓글 표시
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
채택된 답변
Geoff Hayes
2022년 6월 16일
x = randn(10000,1);
h = histogram(app.ULAxis, x);
댓글 수: 2
Geoff Hayes
2022년 6월 17일
@Stephen john ULAxis is mentioned by the OP in the question: "I want to plot histogram on app.ULAxis in app designer ".
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Histograms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!