Arrays have incompatible sizes for this operation.

5 visualizaciones (últimos 30 días)
Amirul Azmi
Amirul Azmi el 21 de Nov. de 2022
Respondida: cr el 21 de Nov. de 2022
t=(-1:0.001:5);
u=@(t) t>0;
h1=(2).*(heaviside(t)-heaviside(t-1));
h2=(4).*(heaviside(t)-heaviside(t-2));
h12 = conv(h1,h2);
ht= h1+h12;
% Plot out h1*h2
figure(1)
subplot(1, 1,1 );
plot(t,ht, 'b-', 'LineWidth', 2); % Just plot vs. index.
grid on;
title('Signal h(t)');
xlabel('time', 'FontSize', 12);
ylabel('amplitude h(t)', 'FontSize', 12);

Respuestas (1)

cr
cr el 21 de Nov. de 2022
Try the following change in conv() call on line 5.
h12 = conv(h1,h2,'same');

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by