|
|
Converting a list to arguments for a function --- How?
Posted:
May 6, 2011 6:55 AM
|
|
Suppose I have a list,
list = {4,1,1}
and I wish to use it as follows
f[4,1,1]
Is there a simple way (without looping through the elements list) to transfer the elements of list to the arguments for f?
|
|