代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/426783/8999646
m exa011004_sinc.m
%-----------------------------------------------------------------
% exa011004_sinc.m, for example 1.10.4
% to generate the sinc function.
% 产生一 sinc 函数;
%-----------------------
www.eeworm.com/read/426783/8999666
m exa050501.m
%------------------------------------------------------------------------
% exa050501.m, for example 5.5.1 and fig5.5.1
% to explain the spectra factorization
%------------------------------------
www.eeworm.com/read/426783/8999716
m exa060701_3.m
%-----------------------------------------------------------------------------
% exa060701_3.m , for example 6.7.1 and 6.5.1
% to test butter.m
%---------------------------------------------------
www.eeworm.com/read/426783/8999726
m exa060701_2.m
%-----------------------------------------------------------------------------
% exa060701_2.m , for example 6.7.1 and 6.5.1
% to test buttord,lp2lp,bilinear ;
% to design Low-pass DF with s=2/Ts[(
www.eeworm.com/read/426783/8999765
m exa100800_corrcoef.m
%------------------------------------------------------------------------
% exa100800_corrcoef.m,
% to test corrcoef.m ;
%------------------------------------------------------------------------
www.eeworm.com/read/426783/8999801
c mdefir1.c
#include
#include
#include
#include "msp.h"
void mdefir1(int l,int iband,float fl,float fh,float fs,int iwindow,
float b[],float w[],int *ierror)
{
/*-------------
www.eeworm.com/read/426535/9014561
m ex3512.m
%例35-12:求方向导数。
syms x y z
f=x*y^2-x*y*z+z^3;
s=jacobian(f)
sx=subs(s,'x','1');
sy=subs(sx,'y','1');
sz=subs(sy,'z','2');
g=vpa(sz)
a=pi/3;
b=pi/3;
c=pi/3;
L=g*[cos(a),cos(b),cos(c)]'
www.eeworm.com/read/426535/9014920
m ex3613.m
%例36-13 三维曲线绘图
t=0:2*pi;
x=cos(t).*sin(t);
y=2+t;
z=t.^2;
plot3(x,y,z)
www.eeworm.com/read/426535/9015033
m ex2320.m
%例23-20 文本框标注
x=0:0.02*pi:2*pi;
y=sin(x)+cos(x);
plot(x,y,pi,sin(pi)+cos(pi),'o')
text(pi,sin(pi)+cos(pi),['sin(\pi)+cos(\pi)=',num2str(sin(pi)+cos(pi))])
gtext({'gtext1-line1','gtext1-line2'})