代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/429840/8786152
m examp5_1.m
syms t; f=t^2*exp(-2*t)*sin(t+pi); laplace(f)
pretty(ans)
latex(ans)
www.eeworm.com/read/429840/8786653
m examp3_37.m
syms t; syms a positive; x=a*cos(t); y=a*sin(t); z=a*t;
I=int(z^2/(x^2+y^2)*sqrt(diff(x,t)^2+diff(y,t)^2+diff(z,t)^2),t,0,2*pi)
www.eeworm.com/read/429840/8786662
m examp3_36.m
triplequad(inline('4*x.*z.*exp(-x.*x.*y-z.*z)','x','y','z'),...
0, 2, 0, pi, 0, pi,1e-7,@quadl)
www.eeworm.com/read/429840/8786744
m examp5_7.m
syms t w; syms a potitive
f=1/(t^2+a^2); F=fourier(f,t,w)
syms t w; syms a positive
f=pi*exp(-a*abs(w))/a; ifourier(f)
ifourier(F)
www.eeworm.com/read/385582/8797987
m lag.m
function s=lagrange(t,n)
for i=1:n
h=2*pi/n;
x(i)=i*h;
end
s=0;
for i=1:n
l=1;
for j=1:n
if j~=i
l=l*(t-x(j))/(x(i)-x(j));
end
end
s=s+
www.eeworm.com/read/429491/8806209
f90 mpso1.f90
real x10,x20,pi,pi0,o12,random,pq
double precision x1,x2
f(x1,x2)=(1+((x1+x2+1)**2)*(19-14*x1+3*x1*x1-14*x2+6*x1*x2+3*x2*x2))*(30+((2*x1-3*x2)**2)*(18-32*x1+12*x1*x1+48*x2-36*x1*x2+27*x2
www.eeworm.com/read/385103/8819409
m ex5_4.m
x=0:pi/100:2*pi;
y1=0.2*exp(-0.5*x).*cos(4*pi*x);
y2=2*exp(-0.5*x).*cos(pi*x);
plotyy(x,y1,x,y2);
www.eeworm.com/read/385103/8819531
m ex3_21.m
a=0;b=3*pi;
n=1000; h=(b-a)/n;
x=a; s=0;
f0=exp(-0.5*x)*sin(x+pi/6);
for i=1:n
x=x+h;
f1=exp(-0.5*x)*sin(x+pi/6);
s=s+(f0+f1)*h/2;
f0=f1;
end
s