summaryrefslogtreecommitdiff
path: root/3838/CH6/EX6.10.b
diff options
context:
space:
mode:
Diffstat (limited to '3838/CH6/EX6.10.b')
-rw-r--r--3838/CH6/EX6.10.b/EX6_10_b.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3838/CH6/EX6.10.b/EX6_10_b.sce b/3838/CH6/EX6.10.b/EX6_10_b.sce
new file mode 100644
index 000000000..981b8d66c
--- /dev/null
+++ b/3838/CH6/EX6.10.b/EX6_10_b.sce
@@ -0,0 +1,16 @@
+//Example 6 . 6 10 b
+clc ;
+n0 =1;
+N =10;
+for n =1: N
+x ( n ) =n;
+y ( n ) =n*x(n);
+end
+inputshift = (n)*x(N-n0) ;
+outputshift = y (N - n0 ) ;
+if( inputshift == outputshift )
+disp ( 'THE GIVEN SYSTEM I S TIME INVARIANT ' )
+else
+disp ( 'THE GIVEN SYSTEM I S TIME VARIANT ' ) ;
+end
+