代码搜索:Raspberry Pi

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

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

m examp5_22.m

syms z; f=1/(z*sin(z)); c0=limit(f*z^2,z,0) k=[-4 4 -3 3 -2 2 -1 1]; c=[]; for kk=k; c=[c,limit(f*(z-kk*pi),z,kk*pi)]; end; c
www.eeworm.com/read/219349/14886857

m examp8_13.m

x0=[0,0.4,1 2,pi]; y0=sin(x0); ezplot('sin(t)',[0,pi]); hold on sp1=csapi(x0,y0); fnplt(sp1,'--'); % 三次分段多项式样条插值 sp2=spapi(5,x0,y0); fnplt(sp2,':') % 5 次 B 样条插值 x=0:.12:1; y=(x.^2-3*x+5).*exp(-
www.eeworm.com/read/219349/14886872

m examp8_19.m

maple('with(numtheory):'); f=maple(['cfe:=cfrac(pi,20)']) n=maple('nthnumer','cfe',4); d=maple('nthdenom','cfe',4); [vpa(n),vpa(d)]
www.eeworm.com/read/219349/14887011

m examp3_33.m

f=inline('cos(15*x)','x'); tic, S=quadl(f,0,3*pi/2,1e-15), toc S1=quad(f,0,3*pi/2) % 采用默认精度 S1=quad(f,0,3*pi/2,1e-15)
www.eeworm.com/read/219349/14887173

m examp5_13.m

syms t k; syms a positive f1=t; f2=a-t; Fs=int(f1*sin(k*pi*t/a),t,0,a/2)+int(f2*sin(k*pi*t/a),t,a/2,a); simple(Fs)
www.eeworm.com/read/219349/14887230

m examp10_19.m

syms t; f=(1-t^2)*exp(-t^2/2)/sqrt(2*pi); ezplot(f,-4,4), hold on; % 绘制基小波,并保护坐标系不被刷新 ezplot(subs(f,t,t-1),-4,4); ezplot(subs(f,t,t+1),-4,4) % 小波平移 figure; ezplot(f,-4,4), hold on; ezplot(subs(f
www.eeworm.com/read/218534/14915910

cpp server.cpp

#include #include #include #include "server.h" using namespace std; const string Server::FTP_ROOT = "."; TcpFactory* Server::listenTcp = new Tcpfactory; map
www.eeworm.com/read/218418/14921389

cpp p1-14.cpp

#include const double PI=3.1416; //声明常量(const变量)PI为3.1416 main() { //声明3个变量 double r=3,l,s; //计算圆的周长 l=2*PI*r; cout
www.eeworm.com/read/218418/14921515

cpp p1-4.cpp

##include //包含iostream.h头文件 void main() { //输出字符常量、变量和字符串 char c1='A'; cout
www.eeworm.com/read/218367/14925469

m heaviside.m

function H = Heaviside(phi,epsilon) % Heaviside(phi,epsilon) compute the smooth Heaviside function H = 0.5*(1+ (2/pi)*atan(phi./epsilon));