フィルターのクリア

I can't seem to find the error in my program.

4 ビュー (過去 30 日間)
Santos Tapia
Santos Tapia 2018 年 2 月 17 日
コメント済み: Star Strider 2018 年 2 月 19 日
My program looks like this, its supposed to take the input signal and output signal after convolution and graph them versus a variable.
function graphconv(~)
L=200;
K=50;
n=0:L-1;
z = double(rem(n,K) < K/2);
h=@(n) 1/15 .* n>=0&&n<=14;
y = conv(h,z);
plot(n,z,'r',n,y,'b')
but i keep getting these errors and i can't seem to understand what they mean. I already tried googling it but to no avail.
ERROR CODES:
>> graphconv
Input arguments to function include colon operator. To input the colon character,
use ':' instead.
Error in conv (line 43)
c = conv2(a(:),b(:),shape);
Error in graphconv (line 11)
y = conv(h,z);

採用された回答

Star Strider
Star Strider 2018 年 2 月 17 日
You are passing a function handle as an argument to conv. That is throwing the error.
Pass the function with an argument (so it returns a value) instead:
h=@(n) 1/15 .* ((n>=0) & (n<=14));
y = conv(h(n),z, 'same');
Use only one ‘&’ in ‘h’ to test vectors. (Using ‘&&’ requires logical arguments, and you have a vector of numeric arguments.) I added the 'same' argument because that then works in your plot call without problems. If you want a different plot, you will have to call it with either one argument (probably ‘z’), or two equal-length arguments.
  6 件のコメント
Santos Tapia
Santos Tapia 2018 年 2 月 19 日
No need to apologize, thank you very much you've been a great deal of help and have helped alleviate any confusion I previously had!
Star Strider
Star Strider 2018 年 2 月 19 日
As always, my pleasure!

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

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2018 年 2 月 17 日
What it is really getting at is that you cannot conv() a function handle on a matrix. The firs two arguments to conv must be numeric vectors or arrays.
It appears to me that you probably want
conv(z, ones(1,15)/15)
and that possibly you might want to add the 'same' or 'valid' option in the third parameter.
  4 件のコメント
Santos Tapia
Santos Tapia 2018 年 2 月 17 日
I tried the suggested code but the output isn't quite correct perhaps it might be some of the parameters I set but i'm not sure
Walter Roberson
Walter Roberson 2018 年 2 月 18 日
y = conv(z, [ones(1,15)/15, zeros(1, L-15)], 'same');

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


Image Analyst
Image Analyst 2018 年 2 月 17 日
h needs to be an actual numerical array, not a function defnintion. Try
h = 1/15 .* n>=0&&n<=14;
instead.
  3 件のコメント
Santos Tapia
Santos Tapia 2018 年 2 月 17 日
I'm attempting to recreate this function on matlab but I can't find out how to do it properly.
Walter Roberson
Walter Roberson 2018 年 2 月 17 日
h = @(n) 1/15 .* (n>=0 & n<=14);
However, you still cannot convolve with that.

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by