argument list of a function handel

3 次查看(过去 30 天)
I can pass the elements of a list to a function handle:
>> f=@(x,y)x+y
>> f(1,2)
ans = 3
>> x=[1 2]
>> f(x(1),x(2))
ans = 3
But how can I pass the list to the function handle instead of explicitly specifying each element of it? I tried the following but neither worked:
>> f(x)
??? Input argument "y" is undefined.
>> f(x(:))
??? Input argument "y" is undefined.
Thanks for help!

采纳的回答

Walter Roberson
Walter Roberson 2013-3-19
xcell = num2cell(x);
f(xcell{:});
Note that if you are not using scalars, the approach would need to be modified.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with Aerospace Blockset 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by