How to plot this signal?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Abdullah Alasfour
el 19 de Jul. de 2023
Comentada: Abdullah Alasfour
el 19 de Jul. de 2023
dt= 0.0001;
t = 0:dt:10;
ht= abs( (1/2*pi*j*t)*( exp(j*1460*pi*t) - exp(j*1450*pi*t)) );
plot(t,ht)
title(' plotting h(t)')
xlabel(' Time')
ylabel(' h(t)')
grid on
I want to plot this signal in Octave or Matlab, but it dosen't work, and I don't know why it dosen't plot.
0 comentarios
Respuesta aceptada
Adam Danz
el 19 de Jul. de 2023
Editada: Adam Danz
el 19 de Jul. de 2023
ht= abs( (1/2*pi*j*t).*( exp(j*1460*pi*t) - exp(j*1450*pi*t)) );
% Add this ----------^
".*" is element-wise multiplication.
"*" is matrix multiplication and requires size-agreement between the two values you are multiplying.
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!