| Contents | Index |
OBJ = setSignal(OBJ, SIGNALNAME, SIGNALOBJ)
OBJ.SIGNALNAME = SIGNALOBJ
OBJ = setSignal(OBJ, SIGNALNAME, SIGNALOBJ) maps the SIGNALOBJ to SIGNALNAME and returns the object TestCase OBJ.
OBJ.SIGNALNAME = SIGNALOBJ is an alternative syntax.
Assign a signal using setSignal().
testCase = systest.TestCase('Test Case 1')
signal = systest.signals.Signal('Constant')
testCase = setSignal(testCase, 'In1', signal)Assign a signal using "dot" field assignment.
testCase = systest.TestCase('Test Case 1')
signal = systest.signals.Signal('Constant')
testCase.In1 = signal

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |