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