代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/219349/14886983

m examp2_4.m

v1=0: 0.2: pi % 注意,最终取值为 3 而不是 pi v2=0: -0.1: pi % 步距为负,显然不能生成向量,故得出空矩阵 v3=0:pi % 取默认步距1 v4=pi:-1:0 % 逆序排列构成新向量
www.eeworm.com/read/219349/14887023

m examp2_24.m

theta=0:0.01:6*pi; rho=5*sin(4*theta/3); polar(theta,rho) rho=5*sin(theta/3); polar(theta,rho)
www.eeworm.com/read/219349/14887035

m examp5_2.m

syms x w; f=x^2*exp(-2*x)*sin(x+pi); F=laplace(f,x,w) ilaplace(F)
www.eeworm.com/read/115859/14999340

hmm l1.hmm

M= 2 N= 3 A: 0.333 0.333 0.333 0.333 0.333 0.333 0.333 0.333 0.333 B: 0.5 0.5 0.75 0.25 0.25 0.75 pi: 0.333 0.333 0.333
www.eeworm.com/read/216045/15028646

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/215900/15034585

m fesin.m

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

m example1_10.m

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

m myfun.m

function Y= myfun(x) Y=200*sin(1./tan(pi.*x));
www.eeworm.com/read/213764/15125900

rb e7.1-1.rb

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

m exm07061_2.m

clear,t=pi;eval('theta=t/2,y=sin(theta)');who