代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/422005/10669813

asv fun1.asv

function Pcorrect = fun1( Nod , Target , Reference , ar , ao ) %给定传感器位置 实际的量测/目标的位置 参考坐标系 测距测角误差 %其中Nod是(x,y)坐标值,Target同样也是(x,y)坐标值 %求出的Belief是99*99的矩阵 Target=Target-Nod; [thr0 r0]=cart2pol(Tar
www.eeworm.com/read/277085/10669895

m untitled2.m

%5-13 T1 = [3 0 0; 0 2 0; 0 0 1]; tform1 = maketform('affine',T1); vistformfwd(tform1, [0 100],[0 100]); T2 = [1 0 0; .2 1 0; 0 0 1]; tform2 = maketform('affine',T2); vistformfwd(tform2, [0 100]
www.eeworm.com/read/277085/10669930

m a96_05_13.m

%96-05-13 %example 12 clear all; t1=[3 0 0 ;0 2 0;0 0 1]; i=[1 3 5]; tform1=maketform('affine',t1); figure; vistformfwd(tform1,[0 100],[0 100],10,i(1)); t2=[1 0 0;.2 1 0;0 0 1]; tform2=maketf
www.eeworm.com/read/421977/10672812

m examp2_20.m

t=-pi:0.3:pi; y=1./(1+exp(-t)); subplot(221), plot(t,y); title('plot(t,y)') subplot(222), stem(t,y); title('stem(t,y)') subplot(223), semilogy(t,y); title('semilogy(t,y)') subplot(224), stairs(t,y
www.eeworm.com/read/421977/10672825

m examp2_18.m

t=0:.1:2*pi; y=sin(t); plot(t,y) t=0:.1:2*pi; y=[sin(t); cos(t)]; plot(t,y) t=0:.1:2*pi; plotyy(t,sin(t),t,0.01*cos(t)) plot(t,sin(t),t,cos(t)) t=0:.1:2*pi; y1=sin(t); y2=cos(t); y3=sin(t)
www.eeworm.com/read/421977/10672842

m examp6_24.m

r=0.5; gg=7.81*pi*r^2 L1=10; L2=10*sqrt(2); L3=20*sqrt(2); T1=diag([r^2/2, L1^2/12, L1^2/12])*L1*gg*1e-9; T2=diag([r^2/2, L2^2/12, L2^2/12])*L2*gg*1e-9; T3=diag([r^2/2, L3^2/12, L3^2/12])*L3*gg*1e
www.eeworm.com/read/159184/10684437

c show_tan.c

#include #include void main(void) { double pi = 3.14159265; printf("Tangent of pi is %f\n", tan(pi)); printf("Tangent of pi/4 is %f\n", tan(pi / 4.0)); }
www.eeworm.com/read/276983/10690435

cpp p1-98.cpp

#include //以下是几个简单宏替换预处理指令 #define YES 1 #define PI 3.1415926 #define RAD PI/180 #define MESG "This is a string." //以下是主程序 main() { //以下各语句使
www.eeworm.com/read/276983/10690516

cpp p1-12.cpp

#include const double PI=3.1416; //声明常量(const变量)PI为3.1416 main() { //声明3个变量 double r,l,s; //输入圆的半径 coutr; //计算圆的周长
www.eeworm.com/read/276983/10690564

cpp p1-100.cpp

#include #define PI 3.1416 main() { int i=100; #if 1 cout