gpt4 book ai didi

plot - 在 Octave 中创建和绘制分段函数

转载 作者:行者123 更新时间:2023-12-03 23:17:15 29 4
gpt4 key购买 nike

所以我想绘制这个函数

enter image description here

-1

首先我创建了分段函数

function x = pieceWise(t)
if t >= 0 & t <3
x = exp(-t);
else
x = 0;
endif

然后在此处调用并绘制它
x = linspace(-1,5,1000);
y = pieceWise(x);
plot(x,y)

但输出始终为 0

enter image description here

任何提示都会非常有帮助。谢谢

最佳答案

你应该矢量化你的代码:

1;
function x = pieceWise(t)
x = zeros (size (t));
ind = t >= 0 & t < 3;
x(ind) = exp(-t(ind));
endfunction

x = linspace (-1, 5, 1000);
y = pieceWise (x);
plot (x, y)
grid on
print out.p



result

关于plot - 在 Octave 中创建和绘制分段函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48273704/

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