代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/351896/10598478

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/159418/10651110

m source.m

k=0:255; a=sin(2*pi*k*1000/16000); b=sin(2*pi*k*1000/16000)+sin(2*pi*k*6000/16000);
www.eeworm.com/read/350382/10745692

m gaussn.m

function g = gaussn(f0,n) % function gn = gaussn(f0,n) : generates the order n derivative of the % gaussian window, centered at frequency f0 % The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/421253/10746583

m bpskbpsk.m

function y = BBPSK(x,L) for i=1:L tmp((1+(i-1)*10):i*10)=x(i); end for i=1:10*L c(i) = cos(2*pi*i/10); end for i=1:10*L y(i)=tmp(i)*c(i); end
www.eeworm.com/read/419568/10860502

m beijifun.m

function fun=beijifun(a,dlabuda,k,p) fun=exp(-j.*2.*pi.*dlabuda(k).*sin(a)).*p;
www.eeworm.com/read/273606/10908760

m ex5_1.m

x=0:pi/100:2*pi; y=2*exp(-0.5*x).*cos(4*pi*x); plot(x,y)
www.eeworm.com/read/271760/10982073

m c8mga1.m

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

txt 02-1.txt

>> V=1/3*pi*10^2*20 V = 2.0944e+003 >>
www.eeworm.com/read/417309/10995557

txt 05-16.txt

>> h_f=@(x)(sin(x)-0.6); >> [x1,y1]=fzero(h_f,[0,pi/2]) >> [x2,y2]=fzero(h_f,[pi/2,pi]) >> [x3,y3]=fzero(h_f,0) >> [x4,y4]=fzero(h_f,pi)
www.eeworm.com/read/417309/10995958

txt 02-31.txt

% script m-file example: calculate the volume and surface area of a colume r=1; % the radius of the colume h=1; % the hight of the colume s=2*r*pi*h + 2*pi*r^2;