Data Types of Signals in a Bus Selector

5 visualizaciones (últimos 30 días)
Deepak
Deepak el 21 de Sept. de 2012
Hi, Is it possible to get the data-type of the signals in a bus-selector programmatically. any help will be appreciated. Thanks

Respuestas (1)

Ismael Alcalá
Ismael Alcalá el 28 de Nov. de 2012
Editada: Ismael Alcalá el 28 de Nov. de 2012
Hi Deepak, you can select the bus-selector block in simulink and execute in matlab:
portHandles = get(gcbh,'PortHandles')
mStruct = Simulink.Bus.createMATLABStruct(portHandles.Outport)
Then you can find all signal types in the bus selector using class for each signal
class(mStruct.Message1.signal)
ans =
int16
I hope this can help you,
I. Alcalá

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by