Hi Mohamed,
The error message you are encountering indicates that MATLAB cannot find the function "anisodiff2D". This function is likely not a built-in MATLAB function, so you will need to ensure it is available in your MATLAB path. You might want to check the following to fix the issue as it could be potentially because of the reasons mentioned below:
Ensure that "anisodiff2D" exists in your working directory or is included in the MATLAB path. If it's located in a different directory, use:
>> addpath('path_to_directory')
to add that directory to the MATLAB path. If you don't have the function, you might need to download it from a reliable source or implement it yourself. Additionally, make sure that the function's input parameters match how you're calling it in your script, and double-check for any typos in the function name or usage.
These steps should help resolve the error.