代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/305247/13776078

m source2.m

% SOURCE SIGNAL 2 %------------------------------------------------------------------------------- % s = source signal 2 %----------------------------------------------------------------------------
www.eeworm.com/read/304673/13789376

m a_sub.m

function a=a_sub(a1,a2) % % A=A_SUB(A1,A2) % Subtract two angles so that the result % always remains between +/- pi % % simple function to get angle subtraction consistent a=a1-a2; %
www.eeworm.com/read/304673/13789389

m a_add.m

function a=a_add(a1,a2) % % A=A_ADD(A1,A2) % Add two angles so that the result % always remains between +/- pi % a=a1+a2; % get to within 2pi of the right answer a=a - (2.0*pi*fix(a/(2.0*
www.eeworm.com/read/304670/13789682

m a_sub.m

function a=a_sub(a1,a2) % % A=A_SUB(A1,A2) % Subtract two angles so that the result % always remains between +/- pi % % simple function to get angle subtraction consistent a=a1-a2; %
www.eeworm.com/read/304670/13789696

m a_add.m

function a=a_add(a1,a2) % % A=A_ADD(A1,A2) % Add two angles so that the result % always remains between +/- pi % a=a1+a2; % get to within 2pi of the right answer a=a - (2.0*pi*fix(a/(2.0*
www.eeworm.com/read/303772/13809492

m comp_dwiltiii.m

function [coef]=comp_dwiltiii(coef2,a) %COMP_DWILT Compute Discrete Wilson transform type III. % % This program is free software: you can redistribute it and/or modify % it under the terms of the
www.eeworm.com/read/303558/13812639

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/303512/13813921

m omniband.m

% omniband.m - bandwidth of omnidirectional mirrors and Brewster polarizers % % Usage: [F1,F2] = omniband(na,nH,nL,LH,LL,th,pol,N) % [F1,F2] = omniband(na,nH,nL,LH,LL,th,pol) (equivalent
www.eeworm.com/read/303498/13814272

m e0208.m

t1=linspace(0,2*pi,5) %从0到2*pi等分成5个点 linspace(1,8,8) linspace(1,8,1) t2=logspace(0,2,3) %从1到100(即101到102)按对数等分成3个点
www.eeworm.com/read/303498/13814275

m e0242.m

x=5317;y=int2str(x) p=num2str(pi,7) a=[1 2 3;4 5 6] ; b=mat2str(a) str=sprintf('The value of pi=%8.6f.',pi)