isOutputComplexImpl
Complexity of output ports
Syntax
[cp_1,cp_2,...,cp_n] = isOutputComplexImpl(obj)
Description
[
returns whether each output port has complex data. The number of outputs must match the
value returned from the cp_1,cp_2
,...,cp_n] = isOutputComplexImpl(obj
)getNumOutputs
method or the number of output
arguments listed in the stepImpl
method.
For System objects with one input and one output and where you want the input and output
complexities to be the same, you do not need to implement this method. In this case
isOutputComplexImpl
assumes the input and output
complexities are the same and returns the complexity of the input.
If your System object™ has more than one input or output or you need the output and input
complexities to be different, you must implement the
isOutputComplexImpl
method to define the output complexity. You
also must use the propagatedInputComplexity
method if the output
complexity differs from the input complexity.
Run-Time Details
During Simulink® model compilation and propagation, the MATLAB System block calls the
isOutputComplex
method, which then calls the
isOutputComplexImpl
method to determine the output
complexity.
Method Authoring Tips
You must set
Access = protected
for this method.You cannot modify any properties in this method.
Input Arguments
Output Arguments
Examples
Version History
Introduced in R2013b