代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/278599/10526761

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/278599/10526783

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/352662/10529704

c ex17.c

#include /* special function register declarations */ /* for the intended 8051 derivative */ #include
www.eeworm.com/read/160361/10538893

m dft.m

function [Xk]=dft(xn,N) %------------------ %[Xk]=dft(xn,N) % n=[0:1:N-1]; k=[0:1:N-1]; WN=exp(-j*2*pi/N); nk=n'*k; WNnk=WN.^nk; Xk=xn*WNnk;
www.eeworm.com/read/160361/10538953

m dfs.m

function [Xk]=dfs(xn,N) %------------------ %[Xk]=dfs(xn,N) % n=[0:1:N-1]; k=[0:1:N-1]; WN=exp(-j*2*pi/N); nk=n'*k; WNnk=WN.^nk; Xk=xn*WNnk;
www.eeworm.com/read/160243/10551455

m exa060702_2.m

%-------------------------------------------------------------------------- % exa060702_2 , for example 6.6.2 and 6.7.2; % to test buttord.m and butter.m; % to design a Butterworth Bandpass digital
www.eeworm.com/read/160243/10551459

m exa020502.m

%------------------------------------------------------------------------- % exa020502.m, for example 2.5.2 and fig 2.5.6, %------------------------------------------------------------------------
www.eeworm.com/read/160243/10551526

m exa030202.m

%---------------------------------------------------------------------------- % exa030202, for example 3.2.2 and fig 3.2.4 % to explain how to unwrap the phase %------------------------------------
www.eeworm.com/read/352445/10552030

m chirplets.m

function x = chirplets(N, P) % chirplets -- make a signal that is a sum of chirplets % % Usage % x = chirplets(N, P) % % Inputs % N length of signal % P matrix of parameters [amp tim
www.eeworm.com/read/423536/10553209

m ip_07_07.m

% MATLAB script for Illustrative Problem 7, Chapter 7. 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)