For example, ndgrid
has inputs as n vectors where n
is decided by the user.
For my use case, n
can change. I would like to prepare the input list before hand, based on n
, then feed the inputs to ndgrid
. How do I do that please?
For example, say I have 3 row vectors x1
, x2
, and x3
. Then, if n=3
and I put inputs = [x1,x2,x3]
, and I use ndgrid(inputs)
then MATLAB treats this as ndgrid([x1,x2,x3])
instead of ndgrid(x1,x2,x3)
. I want the latter, not the former. How do I solve this please?