Verify - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


DynamicSystems

  

Verify

  

verify the content of a system object

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Verify(sys)

Parameters

sys

-

System; system object to verify

Description

• 

The Verify command checks the validity of sys, a linear system object.

• 

If the system object is verified, the procedure returns NULL. Otherwise an error message describing the problem is displayed. For some problems, a warning rather than an error is generated.

Verification Criteria

For a system to be verified, it must meet the following criteria.

• 

It must be a module.

• 

It must have the exports common to all the system types.

• 

It must have the Matrix exports specific to its type.

• 

The Matrix exports must have compatible dimensions and correspond to the number of input, output, and, possibly, state variables.

• 

The Matrix elements must be of the appropriate type and correspond to a valid linear system.

Examples

withDynamicSystems:

sysNewSystemas+b:

PrintSystemsys

Transfer Functioncontinuous1 output(s); 1 input(s)inputvariable=u1soutputvariable=y1stf1,1=as+b

(1)

Verifysys

Make the transfer function an expression that is not a rational polynomial in s.

sys:-tf1,1expss3+5s2+7s+6

tf1,1ⅇss3+5s2+7s+6

(2)

Verifysys

See Also

DynamicSystems

DynamicSystems[IsSystem]

DynamicSystems[SystemObject]