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