MATLAB: Warning: Function and has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.

warnig

Please someone assist what to do to resolve this warning ,i dont have any idea what to do.

Best Answer

The message says that your code contains a function that has the same name as a built-in function. For example, you might have written a function called "abs" but "abs" is a built-in function provided by MATLAB.
Technically, you can do that. But it suggests that you change the name of your function to avoid this type of conflict.
Related Question