Convolute ramp signal and step signal
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
RandomChikiBum
el 27 de Dic. de 2021
Comentada: Aditya Goel
el 30 de Dic. de 2021
I am supposed to convolute a unit ramp signal and a step signal (till t =10 secs) and I am getting an error while running my code
x = 1:1:10 ;
p = 0.1:0.1:1 ;
u = ones(1 , 10);
r = p.*u;
y = conv(r,u);
plot(x,y);
But all the arrays are of the same length i,e 10
0 comentarios
Respuesta aceptada
VBBV
el 27 de Dic. de 2021
x = 1:1:10 ;
p = linspace(0.1,1,length(x));
u = ones(1 , length(x));
r = p.*u;
y = conv(r,u,'same');
plot(x,y);
Try using additional arguments for conv function
Más respuestas (0)
Ver también
Categorías
Más información sobre Spectral Measurements 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!