error using resample. too many input arguments

조회 수: 18 (최근 30일)
sachin garg
sachin garg 2017년 10월 25일
댓글: Cam Salzberger 2017년 10월 25일
Hi, I tried using resample on a Mac device and I am getting the following error but I do not get any error on windows device.
Error using resample Too many input arguments.
kl = (B*log2(1+1/d));
[Ures_LogP_absCQT, Ures_FreqVec] = resample(LogP_absCQT,FreqVec,1/(fmin*(2^(kl/B)-1)),1,1,'spline');
  댓글 수: 2
KSSV
KSSV 2017년 10월 25일
Read the documentation of resmaple ..you have input many arguments then it needs.
sachin garg
sachin garg 2017년 10월 25일
but it works fine in windows.

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

채택된 답변

Cam Salzberger
Cam Salzberger 2017년 10월 25일
편집: Cam Salzberger 2017년 10월 25일
Hello Sachin,
There are actually six different functions or methods called resample across five products in the current release of MATLAB:
Of these, only the Signal Processing Toolbox function allows for six input arguments, the last being the method. My guess is that you have the Signal Processing Toolbox installed on your Windows computer, but not on your Mac. Or you have different releases of MATLAB on the computers, which may have had different specifications for how to input to your desired resample function. Or you have a user-defined resample function somewhere on your path on the Mac, which shadows the Signal Processing Toolbox implementation.
One way you can tell is to use which with the input arguments to see which implementation MATLAB will try to call:
which resample(LogP_absCQT,FreqVec,1/(fmin*(2^(kl/B)-1)),1,1,'spline')
Or use this to see all implementations installed, and the order of preference:
which -all resample
-Cam
  댓글 수: 2
sachin garg
sachin garg 2017년 10월 25일
THANK YOU SO MUCH!!
Cam Salzberger
Cam Salzberger 2017년 10월 25일
No problem. Happy to help.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by