필터 지우기
필터 지우기

How to displays data in array C as an image in App Designer

조회 수: 4 (최근 30일)
balandong
balandong 2020년 3월 31일
답변: balandong 2020년 4월 1일
Dear Coder,
In App designer, how can I display an array data as an image?
In normal circumstances, the above routine can be easily achieved via the following,
CArray=[200 1 3 400 3;...
1 0 3 400 3;...
1 1 3 400 3000]
image(CArray)
However, I am not able to replicate the same routine under the app designer figure
I have check documentaion about the Display Graphics in App Designer, but I cannot find similar image function.
Appreciate if someone can shed some light

채택된 답변

balandong
balandong 2020년 4월 1일
fig=app4;
fig.Panel2.AutoResizeChildren = 'off';
ax = subplot(1,1,1,'Parent',fig.Panel2);
CArray=[200 1 3 400 3;...
1 0 3 400 3;...
1 1 3 400 3000]
image(ax,CArray) % To include the hanlde ax!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by