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

1 view (last 30 days)
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,

Accepted Answer

Walter Roberson
Walter Roberson on 23 Feb 2019
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 Comment
Walter Roberson
Walter Roberson on 24 Feb 2019
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.

Sign in to comment.

More Answers (0)

Categories

Find more on Interactive Control and Callbacks in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!