代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/365301/9870285

m mydspexp1_bsdu.m

clear all; clc; close all; h0 = [-2:0.01:4]; h1 = [-4:0.01:2]; [y,x] = meshgrid(h1,h0); J = 0.55 + x.^2 + y.^2 + 2* x .* y * cos(pi/8) ... - sqrt(2) * x * cos(pi/10) - sq
www.eeworm.com/read/169255/9871930

cs form1.cs

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using Microsoft.DirectX; using Microsoft.DirectX.Direct
www.eeworm.com/read/169255/9871986

cs form1.cs

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using Microsoft.DirectX; using Microsoft.DirectX.Direct
www.eeworm.com/read/169255/9871997

cs form1.cs

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using Microsoft.DirectX; using Microsoft.DirectX.Direct
www.eeworm.com/read/365044/9880666

m untitled4.m

N=512; Nfft=1024; Fs=2*pi; f1=50; f2=120; fs=300; f1=f1/fs; f2=f2/fs; n=0:N-1; xn=sin(2*pi*f1*n)+sin(2*pi*f2*n)+randn(size(n)); L=input('L='); window=boxcar(L); noverlap=L/2; [pxx2,f]=psd
www.eeworm.com/read/365044/9880672

m untitled6.m

N=100; L=512; f1=100; f2=110; fs=250; T=1/fs; ws=2*pi*fs; t=(0:N-1)*T; f=cos(2*pi*f1*t)+0.75*cos(2*pi*f2*t); wh=(hamming(N))'; f=f.*wh; F=fftshift(fft(f,L)); w=(-ws/2+(0:L-1)*ws/L)/(2*pi);
www.eeworm.com/read/365044/9880675

m untitled5.m

N=100; L=512; f1=100; f2=110; fs=250; T=1/fs; ws=2*pi*fs; t=(0:N-1)*T; f=cos(2*pi*f1*t)+0.75*cos(2*pi*f2*t); wh=(kaiser(N,6))'; f=f.*wh; F=fftshift(fft(f,L)); w=(-ws/2+(0:L-1)*ws/L)/(2*pi)
www.eeworm.com/read/365044/9880679

m untitle3.m

N=50; f1=50; f2=120; fs=300; T=1/fs; ws=2*pi*fs; t=(0:N-1)*T; f=sin(2*pi*f1*t)+sin(2*pi*f2*t)+randn(1,N); wh=(hamming(N))'; f=f.*wh; F=fftshift(fft(f,L)); w=(-ws/2+(0:L-1)*ws/L)/(2*pi); pl
www.eeworm.com/read/365044/9880681

m untitled2.m

N=256; L=256; fs=16; T=1/fs; ws=2*pi*fs; t=(0:N-1)*T; f=exp((-2)*t); F=fftshift(fft(f,L)); w=(-ws/2+(0:L-1)*ws/L)/2*pi; plot(w,abs(F)); xlabel('w'); ylabel('exp((-2*t))的幅度谱')
www.eeworm.com/read/364988/9884071

v mo.v

module mo(clk,en,pi,so); input clk,en; input [7:0] pi; output so; reg so; integer count; always @(posedge clk) if(en) count = 0; else if(count < 8) begin so