代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/181668/9242138

cpp useptrswap.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/181662/9242595

txt test2.txt

--------------- 图形1: color is red; origin is (20, 200); -- 设置原点的偏移量 rot is 0; -- 不旋转 scale is (40, 40); -- 设置比例 for T from 0 to 2*pi step pi/150 draw (t, -sin(t)); --
www.eeworm.com/read/378183/9246554

dat codetc5.dat

break 语句 形式: break; ---- 功能: 用来从从循环体内跳出循环体,即提前结束循环,接首执行下面的语句.例如: ---- for(r=1;r100)break; printf("%f",tp);
www.eeworm.com/read/377912/9257966

m fun_12_10.m

function ydot=fun_12_10(t,x) u=1-(t.^2)/(pi^2); ydot=[0 1;-1,0]*x+[0 1]'*u;
www.eeworm.com/read/377342/9279948

cpp useptrswap.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/180734/9296506

cpp useptrswap.cpp

/* * This file contains code from "C++ Primer, Fourth Edition", by Stanley B. * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the * copyright and warranty notices given in that
www.eeworm.com/read/376593/9312419

m examp3_43.m

syms u v; syms a b c positive; x=a*sin(u)*cos(v); y=b*sin(u)*sin(v); z=c*cos(u); A=diff(y,u)*diff(z,v)-diff(z,u)*diff(y,v); I=int(int(x^3*A,u,0,pi/2),v,0,2*pi)
www.eeworm.com/read/376593/9312822

m examp5_20.m

syms z f=sin(z+pi/3)*exp(-2*z)/(z^3*(z-1)) limit(diff(f*z^3,z,2)/prod(1:2),z,0) limit(f*(z-1),z,1)
www.eeworm.com/read/376593/9313048

m c10mga1.m

function [sol,y]=c10mga1(sol,options) x=sol(1); y=x.*sin(10*pi*x)+2;
www.eeworm.com/read/180268/9314135

m sinc1.m

clear all xx = -2*pi:.1:2*pi; [X,Y] = meshgrid(xx); z = sqrt(X^2+Y^2); x = sinc(z);