Undefined function or variable 'chebwin'.

Hi! I'm having trouble with my Matlab code. When I run the code, it shows this.
Undefined function or variable 'chebwin'.
Error in problem (line 33)
[ps2,freq]=pwelch(data,chebwin(128,100),[],N,Fs);% plotting half of the power spectrum with 50% overlap and chebwin window of length
128
Is this a problem with the toolbox or another issue?

 Accepted Answer

chebwin() needs the Signal Processing Toolbox to be installed and licensed. That is the same toolbox as pwelch, but due to the way MATLAB executes functions, it would not look for pwelch until after it had resolved all the parameters to the pwelch call.

1 Comment

I understand what you mean. Thank you for helping me.

Sign in to comment.

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!