summaryrefslogtreecommitdiff
path: root/2279/CH1/EX1.2/Ex1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2279/CH1/EX1.2/Ex1_2.sce')
-rw-r--r--2279/CH1/EX1.2/Ex1_2.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/2279/CH1/EX1.2/Ex1_2.sce b/2279/CH1/EX1.2/Ex1_2.sce
new file mode 100644
index 000000000..4757f4c1d
--- /dev/null
+++ b/2279/CH1/EX1.2/Ex1_2.sce
@@ -0,0 +1,10 @@
+clf
+clear
+clc
+t=[-20:0.01:20];
+for i=1:length(t)
+ x=2*t;
+end
+plot(t,x);
+xtitle("x(t)=2*t for all t","time","amplitude");
+xgrid(5)