代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/284392/8936334

c fir.c

#include #define FIRNUMBER 25 #define SIGNAL1F 1000 #define SIGNAL2F 4500 #define SAMPLEF 10000 #define PI 3.1415926 float InputWave(); float FIR(); float fHn[FIRNUMBER]={ 0.0,0
www.eeworm.com/read/284389/8936464

c iir_ry.c

#include"math.h" #define IIRNUMBER 3 #define PI 3.1415926 float InputWave(); float IIR_RY(); float fAn1_ry[IIRNUMBER]={1.0,2.0,1.0}; float fAn2_ry[IIRNUMBER]={1.0,-1.9648,0.9648}; fl
www.eeworm.com/read/284386/8936557

c gonglv.c

#include"stdio.h" #include"math.h" #define pointnumber 128 #define PI 3.1415936 float Ua[128],Ub[128],Uc[128],Ia[128],Ib[128],Ic[128]; float Pa,Pb,Pc,P,Ua_res,Ub_res,Uc_res,Ia_res,Ib_res,Ic_r
www.eeworm.com/read/383510/8940963

m hrollfcoef.m

% Program 3-3 % hrollfcoef.m % % Generate coefficients of Nyquist filter % % programmed by H.Harada % function [xh] = hrollfcoef(irfn,ipoint,sr,alfs,ncc) %****************** variables ****
www.eeworm.com/read/427472/8942136

m sine.m

t=0:0.1:pi; y=sin(t); plot(t,y);grid on; set(gca,'ytick',[(-1:2/15:1)]); set(gca,'xtick',[(0:0.1:pi)]);
www.eeworm.com/read/383466/8943804

m fplotjb.m

clear clc subplot(2,2,1), fplot('humps',[0 1]) subplot(2,2,2), fplot('abs(exp(-j*x*(0:9))*ones(10,1))',[0 2*pi]) subplot(2,2,3), fplot('[tan(x),sin(x),cos(x)]',2*pi*[-1 1 -1 1]) subplot(2,2,4), f
www.eeworm.com/read/284304/8947392

txt 08-28.txt

>> t = 0:pi/6:4*pi; >> [x,y,z] = cylinder(4+cos(t),30); >> surf(x,y,z),title('default axis'); >> axis square,title('axis square'); >> axis equal,title('axis equal');
www.eeworm.com/read/284304/8947716

txt 02-24.txt

>> a=1;b=2;c=sqrt(3); >> cos_alpha = (a^2 + b^2 -c^2) / (2*a*b) >> alpha=acos(cos_alpha) >> alpha=alpha*180/pi >> clear alpha; >> alpha=acosd(cos_alpha)
www.eeworm.com/read/284304/8947839

txt 04-40.txt

x = 0:pi/5:2*pi; y = sin(x); plot(x,y); hold on y1 = interpft(y,20); x1=linspace(0,2*pi,20); plot(x1,y1,'.');
www.eeworm.com/read/284304/8947903

txt 09-04.txt

>> t=0:pi/20:2*pi; >> z=sin(t); >> plot(t,z) >> set(gca,'YAxisLocation','right') >> xlabel('t') >> ylabel('z')