代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/426535/9015690

m ex2106.m

%例21-6:采用变步长辛普生法求定积分。 [S,n]=quad('func_int',0,3*pi)
www.eeworm.com/read/426535/9015700

m ex2105.m

%例21-5:采用梯形法计算定积分 。 X = 0:pi/100:pi; Y = sin(X); Z = trapz(X,Y)
www.eeworm.com/read/381207/9104900

m sinc1.m

clear all xx = -2*pi:.1:2*pi; [X,Y] = meshgrid(xx); z = sqrt(X^2+Y^2); x = sinc(z);
www.eeworm.com/read/184304/9111619

m exm086~1.m

%exm0861_1.m clear, t=pi; cem='[t/2,t*2,sin(t)]'; y=eval(cem)
www.eeworm.com/read/184196/9117704

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/183756/9142045

c sincos.c

/* sincos.c - math routines */ /* Copyright 1992-1993 Wind River Systems, Inc. */ /* modification history -------------------- 01f,05feb93,jdi doc changes based on kdl review. 01e,02dec92,jdi doc
www.eeworm.com/read/183383/9160613

m corrcoe_1d.m

function out=CorrCoe_1d(AngleSpread) out=exp(-j*2*pi*1*sin(AngleSpread));
www.eeworm.com/read/183383/9160641

m corrcoe_3d.m

function out=CorrCoe_3d(AngleSpread) out=exp(-j*2*pi*3*sin(AngleSpread));
www.eeworm.com/read/183383/9160666

m corrcoe_2d.m

function out=CorrCoe_2d(AngleSpread) out=exp(-j*2*pi*2*sin(AngleSpread));
www.eeworm.com/read/181987/9222805

m circle.m

clf;r=2;t=0:pi/100:2*pi;x=r*exp(i*t); plot(x,'r*');axis('square')