MATLAB: Does the SYSTEM_DEPENDENT function in the MATLAB help for changeNotification.m and changeNoti​ficationAd​vanced.m return “Undefined function or method” error when executed in MATLAB 7.5 (R2007b)

changechangenotificationchangenotificationadvancedhandlesMATLABnotificationsystem_dependent

When I execute the following commands:
SYSTEM_DEPENDENT('RemotePathPolicy', 'Reload')
I receive the following result
?? Undefined function or method 'SYSTEM_DEPENDENT' for input arguments of type 'char'.

Best Answer

This enhancement has been incorporated in Release 2008b (R2008b). For previous product releases, read below for any possible workarounds:
Use the following:
system_dependent('RemotePathPolicy', 'Reload')
instead of
SYSTEM_DEPENDENT('RemotePathPolicy', 'Reload')