How can I use "spy" at AppDesigner

조회 수: 5 (최근 30일)
Geunbae Kim
Geunbae Kim 2019년 7월 18일
댓글: Geunbae Kim 2019년 8월 14일
I'd like use "spy" type graph at appdesigner.
So I called "spy" function to draw the result in the appdesigner but it was drawn on the other window.
questions :
  1. Does appdesigner support "spy" ?
  2. if not, how can I use spy type graph at appdesigner?
appreciate if I have any help.
Peter
  댓글 수: 2
Giuseppe Bellisano
Giuseppe Bellisano 2019년 8월 13일
I simply used in my app designer code:
Figures (1);
spy (A);
The problem is that the graph is drawn in a different window
Geunbae Kim
Geunbae Kim 2019년 8월 14일
You can solve it the below answer.
Now I can draw "spy" type graph in the same application of appdesigner.

댓글을 달려면 로그인하십시오.

채택된 답변

Abhilash Padma
Abhilash Padma 2019년 8월 1일
1)App designer doesn’t support “Spy” directly.
2)You can use the plot in app designer to draw spy type graph. See the following code where I have used plot to draw “spy” type graph which may help solve your problem.
S=bucky;
ax=axes;
[i,j] = find(S);
[m,n] = size(S);
plot(ax,j,i,'marker','.','markersize',6,'linestyle','none');
xlabel(ax,['nz = ' int2str(nnz(S))]);
set(ax,'xlim',[0 n+1],'ylim',[0 m+1],'ydir','reverse','plotboxaspectratio',[n+1 m+1 1]);
  댓글 수: 1
Geunbae Kim
Geunbae Kim 2019년 8월 14일
As your instruction, I could plot spy type graph in the appdesigner.
I appreciate your guide.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by