How to use sinc function

82 views (last 30 days)
I am getting an error that reads, "Check for missing argument or incorrect argument data type in call to function 'sinc' ". I am trying to implement this piecewise function, for designing FIR filter using the Fourier series method. This is what I am doing:
omegac = 0.3*pi; % Cutoff frequency
L = 50; % Filter order L = 61
M = (L-1)/2; % M
l = 0:2*M; % Coefficient index l
h = omegac/pi*sinc(omegac*(l-M)/pi); % Compute coefficients
omega = -pi:2*pi/200:pi; % Frequency range
Hd = freqz(h,1,omega); % Frequency response
plot((omega/pi),abs(Hd)),... % Use normalized frequency
xlabel('Normalized frequency'), ylabel('Magnitude'), grid;
axis([-1 1 0 1.2]);
  2 Comments
Walter Roberson
Walter Roberson on 4 Jun 2020
Is the problem only showing up when you use MATLAB Coder, or is it happening in basic MATLAB as well?
Your posted code works for me.
Could you confirm that you have Signal Processing Toolbox installed and licensed?
ROBERT Gomez
ROBERT Gomez on 22 Nov 2022
Thanks a lot for this sir.

Sign in to comment.

Accepted Answer

David Goodmanson
David Goodmanson on 23 Nov 2022
Hi Ricardo,
while it might be nice to have the Signal Processing toolbox, you certainly don't need to buy any toolboxes to do this, same with other simple functions that happen to be squirreled away in one toolbox or another. One of the good things about Matlab is you can make your own function and save it somewhere on your path.
function y = sincc(x)
% sinc function, sin(pi*x)/(pi*x)
% y = sincc(x)
y = sin(pi*x)./(pi*x);
y(isnan(y)) = 1;
Here I just called it sincc so that it would not conflict with the Matlab function. No error checking or anything, but if you own the function you can decide how much of that is appropriate.

More Answers (1)

Ayush Goyal
Ayush Goyal on 18 Jun 2020
From my understanding of the question you are trying to use the sinc function but getting error while calling it. To use the sinc function you must have licensed and installed the Signal Processing Toolbox. To check all the installed toolboxes in MATLAB you can use command “ver”. In case you don’t find the Signal Processing Toolbox installed you can refer to the following link to install the toolbox:

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!