Hey all,
Suppose I have a MATLAB function that returns two (or more) output arguments, but I only care about the second one, and I do not wish to assign the value of the first one to a variable.
What bugs me is when, for example, I solve an ODE:
[t, x] = ode45(blablabla)
and then...