setUnits

Set units for signal interface element

    Description

    example

    setUnits(interfaceElem,units) sets the units for the designated signal interface element.

    Examples

    collapse all

    Create a model named 'archModel', add an interface, create an interface element with a name 'x', and set the units for the interface element 'kg'.

    modelName = 'archModel';
    arch = systemcomposer.createModel(modelName); % Create model
    
    interface = arch.InterfaceDictionary.addInterface('interface'); % Add interface
    elem = interface.addElement('x'); % Create interface element
    
    setUnits(elem,'kg'); % Set units for interface element

    Input Arguments

    collapse all

    Interface element, specified as a systemcomposer.interface.SignalElement object.

    Units of interface element, specified as a character vector.

    Data Types: char

    Introduced in R2019a