MATLAB: How to call up built in functions

built-incase sensitivecheby1functionsMATLAB

Why do I sometimes get an error when trying to call built-in functions like "cheby1.m"?
>> [b, a] = Cheby1(n, Rp, Wp);
Cannot find an exact (case-sensitive) match for 'Cheby1'
The closest match is: cheby1 in <file:///C:/Program C:\Program> Files\MATLAB\R2018a\toolbox\signal\signal\cheby1.m

Best Answer

This error message is saying that this function does not exist. This is because MATLAB functions and scripts are case-sensitive so calling "Cheby1" does not find the function "cheby1".