代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/217687/14953459

m phasecalculation.m

function [phase phasepos] = PhaseCalculation(peaks), % % [phase phasepos] = PhaseCalculation(peaks), % ECG phase calculation from a given set of R-peaks. % % input: % peaks: vector of R-peak pul
www.eeworm.com/read/115859/14999359

c hmmutils.c

#include #include #include #include "nrutil.h" #include "hmm.h" void ReadHMM(FILE *fp, HMM *phmm){ int i, j, k; fscanf(fp, "M= %d\n", &(phmm->M)); fscanf(f
www.eeworm.com/read/216045/15028863

m ip_07_07.m

% MATLAB script for Illustrative Problem 7.7. clear echo on Tb=1; f1=1000/Tb; f2=f1+1/Tb; phi=pi/4; N=5000; % number of samples t=0:Tb/(N-1):Tb; u1=cos(2*pi*f1*t); u2=cos(2*pi*f2*t);
www.eeworm.com/read/215900/15034592

m ex2_1.m

x=1+2i; y=3-sqrt(17); z=(cos(abs(x+y))-sin(78*pi/180))/(x+abs(y))
www.eeworm.com/read/215900/15034646

m ex5_8.m

t=0:0.01:2*pi; x=exp(i*t); y=[x;2*x;3*x]'; plot(y) grid on; %加网格线 box on; %加坐标边框 axis equal %坐标轴采用等刻度
www.eeworm.com/read/215900/15034658

m ex5_17.m

[x,y]=meshgrid(0:0.25:4*pi); z=sin(x+sin(y))-x/10; mesh(x,y,z); axis([0 4*pi 0 4*pi -2.5 1]);
www.eeworm.com/read/215900/15034691

m ex5_15.m

subplot(2,2,1); ezplot('x^2+y^2-9');axis equal subplot(2,2,2); ezplot('x^3+y^3-5*x*y+1/5') subplot(2,2,3); ezplot('cos(tan(pi*x))',[ 0,1]) subplot(2,2,4); ezplot('8*cos(t)','4*sqrt(2)*sin(t)',[
www.eeworm.com/read/215900/15034704

m ex5_19.m

t=0:pi/20:2*pi; [x,y,z]= cylinder(2+sin(t),30); subplot(2,2,1); surf(x,y,z); subplot(2,2,2); [x,y,z]=sphere; surf(x,y,z); subplot(2,1,2); [x,y,z]=peaks(30); surf(x,y,z);
www.eeworm.com/read/114822/15037046

m hilbert3.m

t=0:1/1023:1,x=sin(2*pi*60*t); y=hilbert(x); plot(t(1:50),real(y(1:50))); hold on plot(t(1:50),imag(y(1:50)),':'); hold on
www.eeworm.com/read/114551/15048207

txt mch03-01.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)