summaryrefslogtreecommitdiff
path: root/2279/CH3/EX3.18/Ex3_18.sce
blob: ea9b0558365c8662feac8387a373d28d50657fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example 3.18
clc
clear
t=0:0.01:10;
for i=1:length(t)
    x(i)=sin(i);
    y(i)=2*x(i);
    z(i)=0.5*y(i);
end
if (x==z) then
    disp("The given system is invertible");
else
    disp("the Given system is non-invertible");
end