代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/232704/14184686
m grid542.m
function grid542
X=0:0.1*pi:2*pi;
Y=sin(X);
plot(X,Y);
grid on
www.eeworm.com/read/232704/14184749
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/232704/14184787
m polar533.m
function polar533
rho0=1;
theta=0:pi/20:4*pi;
rho=rho0+theta*rho0;
polar(theta,rho,':')
www.eeworm.com/read/232307/14199001
c pt.c
/*
pt.c (c) 1998 Grant R. Guenther
Under the terms of the GNU General Public License.
This is the high-level driver for parallel port
www.eeworm.com/read/232055/14209664
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/232055/14209847
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/232055/14209853
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/232055/14209911
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/129636/14234890
m exm05011_1.m
a1=[1/3,pi/7,sqrt(5),pi+sqrt(5)] %a1是数值常数
a2=sym([1/3,pi/7,sqrt(5),pi+sqrt(5)]) %最接近的有理表示
a3=sym([1/3,pi/7,sqrt(5),pi+sqrt(5)],'e') %带估计误差的有理表示
a4=sym('[1/3,pi/7,sqrt(5),pi
www.eeworm.com/read/128477/14294526
m test_fplot.m
fplot('sin(x)/x',[-4*pi 4*pi]);
title('\bfPlot of sin \itx \rm\bf / \itx');
grid on;