Documentation


~Examples:

Create 1 or more symbolic variables:

syms a b c

Create a symbolic Function:

syms x(t) t
equation = x(t) == 4*t^2

Create n variables:

syms a [1 n]

Create a Symbolic Matrix:

syms A [2 4] matrix

Set Assumptions

syms a 
assume(a, 'real')
assumeAlso(0 < a < 3)

Create a derivate:

syms x(t) t
equation = diff(x(t),t) == 8*t

Simplify solution of an equation:

syms x(t) t
>> simplify(x^2 + 2*x + 1)
ans =
	(x(t) + 1)^2