代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/284604/8914122

m exa050501.m

%------------------------------------------------------------------------ % exa050501.m, for example 5.5.1 and fig5.5.1 % to explain the spectra factorization %------------------------------------
www.eeworm.com/read/284604/8914191

m exa060701_3.m

%----------------------------------------------------------------------------- % exa060701_3.m , for example 6.7.1 and 6.5.1 % to test butter.m %---------------------------------------------------
www.eeworm.com/read/284604/8914199

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/284604/8914235

m exa100800_corrcoef.m

%------------------------------------------------------------------------ % exa100800_corrcoef.m, % to test corrcoef.m ; %------------------------------------------------------------------------
www.eeworm.com/read/284604/8914264

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/186670/8919332

txt mch03-02.txt

正弦曲线的标注 t=0:pi/20:2*pi; plot(t,sin(t)) xlabel('t = 0 到 2\pi','FontSize',16) ylabel('sin(t)','FontSize',16) title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16) text(3*pi/4,sin(3*pi/4),..
www.eeworm.com/read/186670/8919344

txt mch03-03.txt

图形的交互式文本标注 t=0:pi/20:2*pi; plot(t,sin(t)) xlabel('t = 0 到 2\pi','FontSize',16) ylabel('sin(t)','FontSize',16) title('\it{从 0 to 2\Pi 的正弦曲线}','FontSize',16) gtext('第一个点'); gtext('第二
www.eeworm.com/read/186670/8919383

txt mch02-04.txt

指定线条属性后的图形 x = -pi:pi/10:pi; y = tan(sin(x)) - sin(tan(x)); plot(x,y,'--ro','LineWidth',2,... 'MarkerEdgeColor','k',... 'MarkerFaceColor','g',... 'MarkerSize',10)
www.eeworm.com/read/186670/8919410

txt mch02-26.txt

同一个图形窗口中绘制多个子图 t = 0:pi/20:2*pi; [x,y] = meshgrid(t); subplot(2,2,1) plot(sin(t),cos(t)) axis equal subplot(2,2,2) z = sin(x)+cos(y); plot(t,z) axis([0 2*pi -2 2]) subplot
www.eeworm.com/read/186670/8919430

txt mch02-05.txt

图形叠加 x = -pi:pi/10:pi; y = tan(sin(x)) - sin(tan(x)); plot(x,y,'--ro','LineWidth',2,... 'MarkerEdgeColor','k',... 'MarkerFaceColor','g',... 'MarkerSize',10) hold on t = 0:pi/100:2*p