フィルターのクリア

someone who can tell me my mistake why it doesn't graph me?????? QUESTION 14.

1 回表示 (過去 30 日間)
Miguel Amor Rodriguez Avelino
Miguel Amor Rodriguez Avelino 2022 年 4 月 29 日
コメント済み: Voss 2022 年 5 月 31 日
P0214: Use function 'conv(h,x)' to compute noncausal
% h convolves causal x
close all; clc
nh = -4:4;
nx = 0:5;
h = ones(1,9);
x = 1:6;
y1 = conv(h,x); % compute convolution
s= (nh(1)+nx(1)):(nh(end)+nx(end)); % define support
m = conv0(h,nh,x,nx); % verification
%plot
plot(x,y1)

回答 (1 件)

Voss
Voss 2022 年 4 月 29 日
Maybe the plot command is never reached because of an error on the previous line:
try
% h convolves causal x
close all; clc
nh = -4:4;
nx = 0:5;
h = ones(1,9);
x = 1:6;
y1 = conv(h,x); % compute convolution
s= (nh(1)+nx(1)):(nh(end)+nx(end)); % define support
m = conv0(h,nh,x,nx); % verification
%plot
plot(x,y1)
catch ME
disp(ME.message);
end % see error message below:
Undefined function 'conv0' for input arguments of type 'double'.
Or maybe you do have a function called conv0 that runs ok, but then calling plot gives an error because x and y1 are of different lengths:
try
% h convolves causal x
close all; clc
nh = -4:4;
nx = 0:5;
h = ones(1,9);
x = 1:6;
y1 = conv(h,x); % compute convolution
s= (nh(1)+nx(1)):(nh(end)+nx(end)); % define support
% m = conv0(h,nh,x,nx); % verification
%plot
plot(x,y1)
catch ME
disp(ME.message);
end % see error message below:
Vectors must be the same length.
Check the command window for error messages.
  2 件のコメント
ahmed alo
ahmed alo 2022 年 5 月 31 日
what dose it mean nx(end)
Voss
Voss 2022 年 5 月 31 日
nx(end) refers to the last element of nx

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by