代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/254742/12121043
m program_3_2.m
% Program 3_2
% Generate the filter coefficients
h1 = ones(1,5)/5; h2 = ones(1,14)/14;
% Compute the frequency responses
[H1,w] = freqz(h1, 1, 256);
[H2,w] = freqz(h2, 1, 256);
% Compute and p
www.eeworm.com/read/152289/12124016
m 4-37.m
syms t;
x = cos(t)+sin(t);
y = sin(t);
z = t;
% 创建符号函数
ezplot3(x,y,z,[-3*pi,3*pi])
www.eeworm.com/read/152289/12124057
m 4-5.m
syms x y;
% 创建符号变量x,y
r = sqrt(x^2+y^2)
% 定义函数r,代表圆半径
area = 2*pi*r^2
% 定义函数area,代表圆面积,其中用到了半径函数r
www.eeworm.com/read/152288/12124301
m 3-25.m
% 采用内联函数形式,第二个参数为变量
f = inline('sin(2*x)+cos(x).^2','x');
Q = quadl(f,0,2*pi)
% 求取积分值
www.eeworm.com/read/254513/12133074
m mustripw.m
% MUSTRIPW Calculate the width of a microstrip line from the effective width required
%
% [W] = MUSTRIPW (Weff, T, H)
% Weff is the effective width
% T is the thickness
% H i
www.eeworm.com/read/151905/12162426
java search.java
public class search
{ public static void main(String[] args)
{ boolean [][] number=new boolean[6][6];
double x[]={0,150,85,150,145,130};
double y[]={0,140,85,155,50,150};
double h[]
www.eeworm.com/read/151847/12169928
c 1cpdv.c
#include "math.h"
void cpdv(pr,pi,m,qr,qi,n,sr,si,k,rr,ri,l)
int m,n,k,l;
double pr[],pi[],qr[],qi[],sr[],si[],rr[],ri[];
{ int i,j,mm,ll;
double a,b,c,d,u,v;
void cmul(doubl
www.eeworm.com/read/340172/12177637
c 1cpdv.c
#include "math.h"
void cpdv(pr,pi,m,qr,qi,n,sr,si,k,rr,ri,l)
int m,n,k,l;
double pr[],pi[],qr[],qi[],sr[],si[],rr[],ri[];
{ int i,j,mm,ll;
double a,b,c,d,u,v;
void cmul(doubl
www.eeworm.com/read/340084/12182847
m test.m
clf(figure(1));clf(figure(2));
clear
for i=1:10
[EMinB(i,:),HInd(i,:),HTar,w]=main();
end
[E,place]=min(EMinB(:,200));
clf(figure(1));clf(figure(2));
figure(1)
plot(w/pi,abs(HInd(place,:)),
www.eeworm.com/read/151561/12200822
m ex3061.m
wp=0.6*pi;
ws=0.4586*pi;
Rp=1;
As=15;
[b,a]=cheb1hpf(wp,ws,Rp,As);
[C,B,A]=dir2cas(b,a)