Borrar filtros
Borrar filtros

what is the script to get line handle by selecting line in a model

42 visualizaciones (últimos 30 días)
what is the script to get line handle by selecting line in a model

Respuesta aceptada

Vishal Rane
Vishal Rane el 5 de Jun. de 2013
Not aware of anything that gets you handle of a selected line. But
find_system(bdroot,'findall','on','Type','Line')
gives all line handles in the block diagram. You can add a specific path in place of bdroot.
  2 comentarios
Kaustubha Govind
Kaustubha Govind el 5 de Jun. de 2013
More specifically, you can query the 'Selected' property of the line handle to find the one that is selected:
lh = find_system(bdroot,'FindAll','on','Type','Line');
get(lh, 'Selected')
Look for the entry corresponding to Selected=on.
venkateswarlu kaithepalli
venkateswarlu kaithepalli el 5 de Jun. de 2013
Thank you very much Govind, your reply helped a lot thanks once again....

Iniciar sesión para comentar.

Más respuestas (1)

Aseem Routray
Aseem Routray el 9 de Dic. de 2019
Hello,
find_system(bdroot,'FindAll', 'on', 'type','line','selected','on')
This will get you the desired result.
Regards,
Aseem

Categorías

Más información sobre Programmatic Model Editing en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by