Undefined function 'signal' for input arguments of type 'double'.

조회 수: 2 (최근 30일)
Matlabuser
Matlabuser 2014년 10월 20일
편집: Orion 2014년 10월 20일
Hi everyone, I am working on a function, by using that I get the value of y. and then there is a command a=signal (y) and a1=amutual(a,L) Length of signal
can anyone plz tell me what is the meaning of these commands and because when I run It, I got "Undefined function 'signal' for input arguments of type 'double'"
Thanks
  댓글 수: 1
Adam
Adam 2014년 10월 20일
It is an unfortunate aspect of Matlab that the syntax for functions and variables is so interchangeable, to the extent that two things that should be clearly different not only use identical syntax, but the definition of one hides the other.
If 'signal' is neither a variable nor a function in your path then that is the error message you will get, but it is impossible for us to tell whether your intention was that 'signal' be a vector/array variable being indexed or a function with y as its argument.

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

채택된 답변

Orion
Orion 2014년 10월 20일
편집: Orion 2014년 10월 20일
and is signal.m on your path ?
in matlab, try
which signal
if the answer is : 'signal' not found.
then you just need to add the path of the folder containing signal
addpath('C:\.....\YourFolder')

추가 답변 (1개)

Orion
Orion 2014년 10월 20일
편집: Orion 2014년 10월 20일
Hi,
Matlab is telling you that it doesn't recognize signal as a function.
is signal a mfile you want to use ? or a matrix (in which case, you tried to access the yth element) ?

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by