필터 지우기
필터 지우기

is there a way to call functions to appdesigner and obtain same results as i do when calling it on MATLAB editor?

조회 수: 1 (최근 30일)
Hello Folks
I've downloaded a function from this website specialised in Hiererachical Clustering
please see:
this function asks the user to give some inputs and returns 4 outputs including one figure
when i call it on the MATLAB editor it works 100%..
my question is: is there a way to call this function in appdesigner and obtain exactely the same
results (the figure and the other outputs) as I Do when i call it in MATLAB editor ?!,
is there a way to use it wihtout changine it's body?
if there is please tell me how,

채택된 답변

Walter Roberson
Walter Roberson 2019년 2월 23일
No. The graphics functions used are not compatible with App Designer .
If I understand the code properly then if you call the function with three outputs then it would not create the graphics and you could create your own . Alternatively you could modify the details of the graphics creation to make them compatible .
  댓글 수: 1
Walter Roberson
Walter Roberson 2019년 2월 24일
figure() would have to be changed to uifigure()
Replace the section for setting the window to full screen, with setting the figure WindowState property to 'maximized'
Either have the function Spinner return immediately without doing anything, or else rewrite the function to use uiprogressdlg()
I might have overlooked something else subtle in the code.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by