代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/409851/11310439
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/263959/11335492
m test_fplot.m
fplot('sin(x)/x',[-4*pi 4*pi]);
title('\bfPlot of sin \itx \rm\bf / \itx');
grid on;
www.eeworm.com/read/409142/11344883
m grid542.m
function grid542
X=0:0.1*pi:2*pi;
Y=sin(X);
plot(X,Y);
grid on
www.eeworm.com/read/409142/11344904
m cylinder532.m
function cylinder532
figure(1)
cylinder
figure(2)
t = 0:pi/10:2*pi;
[X,Y,Z] = cylinder(2+cos(t));
surf(X,Y,Z)
www.eeworm.com/read/409142/11344941
m polar533.m
function polar533
rho0=1;
theta=0:pi/20:4*pi;
rho=rho0+theta*rho0;
polar(theta,rho,':')
www.eeworm.com/read/408213/11401490
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/408213/11401606
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/408213/11401610
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/408213/11401651
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/407840/11410224
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+