diff options
Diffstat (limited to '3812/CH1/EX1.2.a/1_2_a.sce')
-rw-r--r-- | 3812/CH1/EX1.2.a/1_2_a.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3812/CH1/EX1.2.a/1_2_a.sce b/3812/CH1/EX1.2.a/1_2_a.sce new file mode 100644 index 000000000..14681b23a --- /dev/null +++ b/3812/CH1/EX1.2.a/1_2_a.sce @@ -0,0 +1,16 @@ +//example 1_2<a>
+//sketch the following signal x(3t)
+clc;
+clear all;
+t=-1/3:0.0001:1/3;
+for i=1:length(t)
+if t(i)<0 then
+x(i)=1+3*t(i);
+else
+x(i)=1-3*t(i);
+end
+end
+plot2d(t,x)
+plot (t,x, 'red' );
+xtitle('required figure','t','x(3*t)');
+xgrid();
|