필터 지우기
필터 지우기

Conv() not working

조회 수: 14 (최근 30일)
dinesh kumar mohan
dinesh kumar mohan 2020년 10월 8일
I am trying to use Conv function to convolute two distributions. But the Conv function is not working, do I have to install any special tool for it to work. Isn’t it a built-in function?
  댓글 수: 2
Ameer Hamza
Ameer Hamza 2020년 10월 8일
편집: Ameer Hamza 2020년 10월 8일
You don't need a toolbox to run this function. What is the error?
dinesh kumar mohan
dinesh kumar mohan 2020년 10월 8일
I used this example as provided by mathworks: u = [1 0 1]; v = [2 7]; w = conv(u,v)
The error I am getting is: Attempt to execute SCRIPT conv as a function

댓글을 달려면 로그인하십시오.

채택된 답변

Steven Lord
Steven Lord 2020년 10월 8일
I'm guessing you have written your own script conv.m that's taking precedence over the built-in conv function. To check this run:
which -all conv
If my guess is correct, rename or remove your conv.m script.
  댓글 수: 1
dinesh kumar mohan
dinesh kumar mohan 2020년 10월 8일
Yes, I got it. Thank you very much

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Constantino Carlos Reyes-Aldasoro
Could it be that you tried with uppercase C as in Conv and not with lower case as in conv?
>> conv([1 1],[2 2])
ans =
2 4 2
>>
>> Conv([1 1],[2 2])
Cannot find an exact (case-sensitive) match for 'Conv'
The closest match is: conv in C:\Program
Files\MATLAB\R2019a\toolbox\matlab\datafun\conv.m
  댓글 수: 5
Constantino Carlos Reyes-Aldasoro
Great! If this is sorted, please accept the answer. If not, let me know.
Constantino Carlos Reyes-Aldasoro
ah I see that you accepted Steven's.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by