miss_hit icon indicating copy to clipboard operation
miss_hit copied to clipboard

Enforce function argument validation limitations

Open florianschanda opened this issue 5 years ago • 0 comments

https://www.mathworks.com/help/matlab/matlab_prog/function-argument-validation-1.html

do not use functions that interact with the function workspace. Specifically, do not use nested functions or any of the functions listed in the following table in the arguments block.

  • assignin
  • builtin
  • clear
  • dbstack
  • eval
  • evalc
  • evalin
  • exist
  • feval
  • input
  • inputname
  • load
  • nargin
  • narginchk
  • nargoutchk
  • save
  • whos
  • who

florianschanda avatar Dec 26 '19 09:12 florianschanda