gpt4 book ai didi

matlab - 为什么我不能使用开机功能?

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

我写了这段代码:

t=linspace(0,pi)
x = @(t)sin(t)

然后我试了这个->

x = power(x,2)

但是它给了我一个错误,那么我该如何在一个函数上使用 power 函数呢?

最佳答案

你不能。

不过,您可以在函数的输出上使用幂函数

x = @(t)sin(t); %this is an anonymous function

t=linspace(0,pi); % this is an array

x2 = power(x(t),2); % this is an array

或者,您可以创建第二个函数来调用第一个函数

x2=@(t)power(x(t),2); % this is  an anonymous function

关于matlab - 为什么我不能使用开机功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56358629/

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