代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/389834/8496434
m sector.m
function s=sector(u)
if (u>=(-pi/2)&u=(-pi/6)&u=(pi/6)&u=(pi/2)&u=(pi*5/6)&u
www.eeworm.com/read/287843/8665201
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/431596/8666280
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/429840/8786255
m examp2_4.m
v1=0: 0.2: pi % 注意,最终取值为 3 而不是 pi
v2=0: -0.1: pi % 步距为负,显然不能生成向量,故得出空矩阵
v3=0:pi % 取默认步距1
v4=pi:-1:0 % 逆序排列构成新向量