sinc(x)=sin(x)⼀x的程序怎么用matlab编写

2025-01-05 01:09:58
推荐回答(1个)
回答1:

大概代码如下,没有测试,基本上没什么问题:

function y=sinc(x)
if x == 0
y = 1;
else
y = sin(x)/x;
end
end