gpt4 book ai didi

function - 通缉 : Matlab example of an anonymous function returning more than 1 output

转载 作者:太空宇宙 更新时间:2023-11-03 19:07:06 24 4
gpt4 key购买 nike

我使用匿名函数进行简单的数据值转换。匿名函数使用以下语法定义

sqr = @(x) x.^2;

我想要一个简单的匿名函数,它返回多个可以按如下方式使用的输出。 . .

[b,a] = myAnonymousFunc(x);

Matlab 文档表明这是可能的,但它没有给出定义此类函数所需语法的示例。

http://www.mathworks.co.uk/help/techdoc/matlab_prog/f4-70115.html#f4-71162

定义这样一个函数的语法是什么[在一行中,就像我帖子顶部的代码示例]?

最佳答案

这是否满足您的需求?

>> f = @(x)deal(x.^2,x.^3);
>> [a,b]=f(3)
a =
9
b =
27

在这个例子中,你需要确保你只用恰好两个输出参数调用f,否则会出错。

编辑

至少对于最新版本的 MATLAB,您可以使用 ~ 语法仅返回一些输出参数:

>> [a,~]=f(3)
a =
9
>> [~,b]=f(3)
b =
27

关于function - 通缉 : Matlab example of an anonymous function returning more than 1 output,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10634491/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com