Symbolic Math Toolbox
 Go to function:
  Search    Help Desk 
syms ExamplesSee Also

Short-cut for constructing symbolic objects.

Syntax

Description

syms arg1 arg2 ... is short-hand notation for

syms arg1 arg2 ... real is short-hand notation for

syms arg1 arg2 ... unreal is short-hand notation for

Each input argument must begin with a letter and can contain only alphanumeric characters.

Examples

syms x beta real is equivalent to:

To clear the symbolic objects x and beta of 'real' status, type

Note
clear x will not clear the symbolic object x of its status 'real'. You can achieve this, using the commands syms x unreal or clear mex or clear all. In the latter two cases, the Maple kernel will have to be reloaded in the MATLAB workspace. (This is inefficient and time consuming).

See Also

sym



[ Previous | Help Desk | Next ]