代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/321438/13404946
asv jfk9.asv
clear;clc;clf;
t=0:0.01:pi*2;
kl1=pi/2;kl2=pi;kl3=pi*3/2;kl4=pi*2;
z1=(cos(kl1.*cos(t))-cos(kl1))./sin(t);
z2=(cos(kl2.*cos(t))-cos(kl2))./sin(t);
z3=(cos(kl3.*cos(t))-cos(kl3))./sin(t);
z4=(cos
www.eeworm.com/read/321160/13411596
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);
% assum
www.eeworm.com/read/321050/13412915
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/320570/13422960
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/320362/13428016
m dandaotichuanshuxian.m
clear all;close all;
f=0;
for a=0.01:0.005:0.05%半径的变化范围
f=f+1;
A(f)=a;
nn=0;
H=1;
N=40;
for B=0:pi/20:(2*pi-pi/20)
nn=nn+1;
X(nn)=a*cos(pi*nn/20);
www.eeworm.com/read/320360/13428018
m pocklington.m
clear all;close all;
e=8.854e-12;%介电常数
u=pi*4e-7;%磁导率
c=3e+8;
N=41;
a=0.0000001;%天线半径
lambda=1;
L=lambda/2;
f=c/lambda;
k=2*pi/lambda;%波数
z=zeros(1,N);
delta=L/(N+1);
z(1)=-L/2+delta;
for
www.eeworm.com/read/320130/13432664
m chap3_11f.m
function [y]=func(x1,x2,x3)
for l1=1:1:3
gs1=-[(x1+pi/6-(l1-1)*pi/6)/(pi/12)]^2;
u1(l1)=exp(gs1);
end
for l2=1:1:3
gs2=-[(x2+pi/6-(l2-1)*pi/6)/(pi/12)]^2;
u2(l2)=exp(gs2);
end
www.eeworm.com/read/319404/13452333
m ex0609.m
%例6-9 创建元胞数组
A(1,1) = {[1 4 3; 0 5 8; 7 2 9]};
A(1,2) = {'Anne Smith'};
A(2,1) = {3+7i};
A(2,2) = {-pi:pi/10:pi};
A
B(3,3)={'Hello'};
B
C=cell(3,4);
C{2,3}=rand(2);
C
whos
www.eeworm.com/read/319404/13452454
m ex2304.m
%例23-4 极坐标绘图函数polar
theta=0:0.05*pi:2*pi;
r1=sin(theta);
r2=cos(theta);
polar(theta,r1,theta,r2)
polar(theta,[r1;r2])
polar([theta' theta'],[r1' r2'])
www.eeworm.com/read/319404/13452520
m mcc_test.m
function y=mcc_test(t)
t=0:0.001:t;
y=sin(2*pi*50*t);
plot(y);