代码搜索:Raspberry Pi

找到约 10,000 项符合「Raspberry Pi」的源代码

代码结果 10,000
www.eeworm.com/read/191214/8433118

m example1_10.m

t=0:pi/20:2*pi; plot(t,sin(t)); delete(gca);
www.eeworm.com/read/290937/8449906

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
www.eeworm.com/read/390354/8470260

m graf2_2.m

x = 0:0.2:10*pi; y = sqrt(sin(x)); plot(x,y)
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/389768/8504296

rb e7.1-1.rb

#E7.1-1.rb puts Math.sqrt(2) puts Math::PI
www.eeworm.com/read/289179/8570174

m graf2_2.m

x = 0:0.2:10*pi; y = sqrt(sin(x)); plot(x,y)
www.eeworm.com/read/287917/8661101

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
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 % 逆序排列构成新向量