代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/215900/15034706

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
www.eeworm.com/read/114549/15048261

txt mch02-19.txt

详细标示X轴 x = -pi:.1:pi; y = sin(x); plot(x,y) set(gca,'XTick',-pi:pi/2:pi) set(gca,'XTickLabel',{'-pi','-pi/2','0','pi/2','pi'})
www.eeworm.com/read/114549/15048272

txt mch02-21.txt

按缺省纵横比绘制的图形 t = 0:pi/20:2*pi; plot(sin(t),2*cos(t)) grid on
www.eeworm.com/read/215382/15062494

m grid542.m

function grid542 X=0:0.1*pi:2*pi; Y=sin(X); plot(X,Y); grid on
www.eeworm.com/read/215382/15062540

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/215382/15062576

m polar533.m

function polar533 rho0=1; theta=0:pi/20:4*pi; rho=rho0+theta*rho0; polar(theta,rho,':')
www.eeworm.com/read/212376/15157208

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/212226/15162754

m ex_9_8.m

%The script, HOPFIELD_ANALYSIS, is to aid with an analysis of a 2D neural net. % The neural net is a modification of the net from the 1984 paper by Hopfield. % The original neural net was also analy
www.eeworm.com/read/210916/15189941

m shaw.m

function [A,b,x] = shaw(n) %SHAW Test problem: one-dimensional image restoration model. % % [A,b,x] = shaw(n) % % Discretization of a first kind Fredholm integral equation with % [-pi/2,pi/2] as both
www.eeworm.com/read/205502/15314695

m ex1_1.m

x=[0:0.5:360]*pi/180; plot(x,sin(x),x,cos(x));