Part-2

This exercise will familiarize you with the symbolic capabilities of MATLAB.

Through an interface with "maple", MATLAB allows symbolic manipulations. The symbolic variables are distinct from the regular, numerical variables and they will not be accessible to normal Matlab functions. Rather, they should be manipulated with special symbolic functions. Therefore, it helps to keep track of which variables are "symbolic" by, for example, giving all symbolic variables a prefix of "sym."

Some useful commands: help more; more on; help script; help symbolic; sym; numeric; maple; solve; ls, who, save, echo, diary, conv.

The answers to all questions must be given by using Matlab.

We will begin with the transfer function representation of a system: 1/(s 2+4)

num = 1; den = [ 1 0 4];