The names of functions or function files in MATLAB cannot contain spaces or periods. Rename your file to remove the spaces and periods or replace them with underscore characters.
isvarname('Exercise P.4 6.m') % Will return false
isvarname('Exercise_P_4_6.m') % Will return true

