In Matlab, I have a variable length cell of values:
C={A1,...,An}
How should I pass and distribute these values into a function able to receive a variable number of arguments?
f(A1,...,An)
Ultimately if not possible, how should I modify the beginning of this function for making this work?