代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/466212/7041114

m ip_07_07.m

% MATLAB script for Illustrative Problem 7.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); % Assu
www.eeworm.com/read/465864/7047615

asm cfft64c.asm

;============================================================================ ; ; File Name : cfft64c.asm ; ; Originator : Digital Control Systems Group ; Texas Instrumen
www.eeworm.com/read/465864/7047618

asm cfft128c.asm

;============================================================================ ; ; File Name : cfft128c.asm ; ; Originator : Digital Control Systems Group ; Texas Instrume
www.eeworm.com/read/465864/7047624

asm cfft256c.asm

;============================================================================ ; ; File Name : cfft256c.asm ; ; Originator : Digital Control Systems Group ; Texas Instrume
www.eeworm.com/read/464825/7060469

m ex_07_04_1.m

% ex_07_04_1.m : 习题 7.4 clear all; close all; N=33; m=(N-1)/4; n=1:N; h(n)=0; for k=0:(m-1) n=4*k+2; h(n+1)=8/(pi*(n-16))/(pi*(n-16)); end h((N+1)/2)=0.5; for k=0:(N-1)/2
www.eeworm.com/read/464825/7060478

m ex_07_03_1.m

% ex_07_03_1.m : 习题 7.3 clear all; fl=pi/4; N=29; factor=(N+1)/2; m=factor*fl/pi; m=floor(m); j=sqrt(-1); for k=0:(N-1) if(k=(N-m)) a=-j*(N-1)*k*pi/N; H(k+1)
www.eeworm.com/read/254517/7072433

m cfreqz.m

% CFREQZ Function to plot pole-zero plot and transfer function of complex poles % and zeros % % CFREQZ (zeros, poles, k) plots the pole zero diagram and tranfer function specified %
www.eeworm.com/read/221007/7074515

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/221007/7074548

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/221007/7074556

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]);