代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/234903/14094257
h data.h
#define PI 3.1415926 /* 在头文件中定义宏PI */
#define S(r) PI*(r)*(r) /* 在头文件中定义宏S(r) */
www.eeworm.com/read/202788/15372882
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/101557/15826600
m sinc.m
function y=sinc(x)
% Y=SINC(X), determines the sinc function
y=(sin(pi*x)+(x==0))./(pi*x+(x==0));