blob: 14681b23a38428a2264ec0c4122fc89606e06503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
|