MATLAB: Is max built in functions

builtin

I have an assignment in which I find max element in 2d array called X. The assignment instructions explicitly state to not use any built in functions. I used max(X) which worked. Now my question here is max built in function or do I have to iterate through array myself? I just wanna be sure i follow instructions.

Best Answer

Yes. max is definitely a built-in function. As such, use of it will have been (sadly) outlawed by your assignment.