-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTemaEX2.m
43 lines (38 loc) · 907 Bytes
/
TemaEX2.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
%Semnal triunghiular periodic
%Perioad?: 5 s.
%Nivel maxim: +1.
%Nivel minim: -2.
%Panta+ 1 V/s Observa?ie: Panta– [V/s] rezult? din calcule
%Pentru rezolutie temporara 2ms
t=0:0.002:2.5
s=-1.2*t+1;%ecuatiile dreptei sunt scoase din calcule
figure(1)
plot(t,s,'b')
hold on;
v=2.5:0.002:5
x=1.2*v-5;
plot(v,x,'b'),grid
axis([0 5 -3 2])
xlabel('Timp [s]'),ylabel('Amplitudine'),grid
%Pentru rezolutie temporara 20ms
t=0:0.02:2.5
s=-1.2*t+1;%ecuatiile dreptei sunt scoase din calcule
figure(2)
plot(t,s,'b')
hold on;
v=2.5:0.002:5
x=1.2*v-5;
plot(v,x,'b'),grid
axis([0 5 -3 2])
xlabel('Timp [s]'),ylabel('Amplitudine'),grid
%Pentru rezolutie temporara 200ms
t=0:0.2:2.5
s=-1.2*t+1;%ecuatiile dreptei sunt scoase din calcule
figure(3)
plot(t,s,'b')
hold on;
v=2.5:0.002:5
x=1.2*v-5;
plot(v,x,'b'),grid
axis([0 5 -3 2])
xlabel('Timp [s]'),ylabel('Amplitudine'),grid