代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/488461/6487286
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));
www.eeworm.com/read/481147/6643967
m norm.m
function [norm]=norm(x)
norm=1/sqrt(2*pi)*int((e.^((-(t.^2))/2),t,-inf,x);
www.eeworm.com/read/480934/6653992
m norm.m
function [norm]=norm(x)
norm=1/sqrt(2*pi)*int((e.^((-(t.^2))/2),t,-inf,x);
www.eeworm.com/read/478650/6712554
m ex0405.m
%用plot(x1,y1,x2,y2,…)绘制多条曲线
x=0:0.1:2*pi;
plot(x,sin(x),x,cos(x),x,sin(3*x)) %画三条曲线
www.eeworm.com/read/476907/6754270
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));