How to get the handle of simulink window in matlab

I want to embed the simulation result of simMechanics into my self-created GUI. So I think the first thing I should do is to get the handle of simMechanics window. I know there must be some way to get it.But how? Any suggestion would be appreciated.

Respuestas (1)

Al Dente
Al Dente el 2 de Abr. de 2015
you can try using findall(0) -- root matlab handle, then looping over all the handles to find the right handle. What I wanted to do in my application is to search for an open Signal Builder window so I did this:
hndls = findall(0);
Tags = arrayfun(@(x)get(x, 'Tag'), hndls, 'UniformOutput', 0);
sigbuilderwin = hndls(strcmp(Tags, 'SignalBuilderGUI'));
Hope this helps

1 comentario

Easier:
sigbuilderwin = findall(groot, 'Tag', 'SignalBuilderGUI');

Iniciar sesión para comentar.

Categorías

Más información sobre Simulink en Centro de ayuda y File Exchange.

Productos

Preguntada:

el 19 de Mzo. de 2015

Comentada:

Jan
el 6 de Feb. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by