blob: 01d741e3599e3547d2ef1ba963e85a1e10093b45 (
plain)
1
2
3
4
5
6
7
8
9
10
|
Syms t s
disp('given')
disp('u(t)=1 for t>=0 else its 0')
y=laplace(1,t,s)
disp("The laplace is")
disp(y)
disp('similarly')
disp('laplace of V0 is')
x=laplace('V0',t,s)
disp(x)
|