@bozbaykus evet plot komutunu silip step(T) girince oluyor.
x= -10:0.1:10
F= exp(-x)
G= (exp(-0.1*x))-1
H= F.*G
T=tf([1],[1 2 10])
subplot(2,3,1)
plot(x,G)
title('G fonksiyonu')
xlabel('x değerleri')
ylabel('G')
legend('G')
subplot(2,3,2)
plot(x,H)
title('H fonksiyonu')
xlabel('x değerleri')
ylabel('H')
legend('H')
subplot(2,3,4:5)
plot(x,G,x,H,'--')
title('G ve H fonksiyonu')
xlabel('x değerleri')
ylabel('G ve H')
legend('G','H')
subplot(2,3,[3 6 ])
step(T)
title('F transfer fonksiyonun birim basamak cevabı')
xlabel('time')
ylabel('Amplitude')
legend('T')
text( 2,0.06,'Max aşım %35.1')
text( 2,0.05,'Oturma zamanı: 3.54s')
text( 2,0.04,'Yükselme zamanı:0.426s')
burada G ile F nin çarpımı olan H'de problem var grafik doğru vermiyor.
şu an sadece H'de sorun yaşıyorum.
0