Matlab R2009b introduced a new "operator" - ~ - to symbolize an unused function output or input. I have detailed question about that implementation. (Calling all @Loren s.)
What does the function see for the value of an unused input parameter?
i.e. if my function is defined as
myfunc(argOne, argTwo, argThree)
and it’s called like this:
myfunc('arg', ~, 'arg')
Is nargin 2, or 3? Is argTwo undefined or empty or something else?
Thanks