代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/459103/7282713
m ex3_21.m
a=0;b=3*pi;
n=1000; h=(b-a)/n;
x=a; s=0;
f0=exp(-0.5*x)*sin(x+pi/6);
for i=1:n
x=x+h;
f1=exp(-0.5*x)*sin(x+pi/6);
s=s+(f0+f1)*h/2;
f0=f1;
end
s
www.eeworm.com/read/458661/7291944
m diffint.m
% diffint.m - generalized Fresnel diffraction integral
%
% Usage: F = diffint(v,s,a,c1,c2)
% F = diffint(v,s,a) (equivalent to c1=-1, c2=1)
% F = diffint(v,s) (equi
www.eeworm.com/read/458661/7291966
m yagi.m
% yagi.m - simplified Yagi-Uda array design
%
% Usage: [I,D,Rfb] = yagi(L,a,d)
%
% L = dipole lengths (in wavelengths) = [L1,L2,..,LK]
% a = dipole diameters = [a1,a2,...,aK]
% d = dipole locati
www.eeworm.com/read/457943/7315229
m lmsalgo.m
function[]=lmsalgo(M,d,angle1,inter)
T= 1e-3;
t=(1:100)*(T/100);
it=1:100;
s=sin(pi*t/T);
i=randn(1,100);
thetao=angle1*pi/180; % calculation of source direction %
www.eeworm.com/read/455704/7368080
m apsk.m
%16apsk调制
fc=0.002;%载波频率即中心频率
Tc=1/fc;%载波周期
fs=2;%采样频率
dt=1/fs;%采样间隔
fo=0.0001;%码元速率
To=1/fo;%码元宽度
N=6;%码元个数
t=0:dt:(N*To-dt);%时间长度
a(1)=0;
a(2)=5;
a(3)=0;
a(4)=9;
a(5)=2;
a(6)=7;
for k
www.eeworm.com/read/454038/7402557
c kfft.c
#include "math.h"
void kfft(pr,pi,n,k,fr,fi,l,il)
int n,k,l,il;
double pr[],pi[],fr[],fi[];
{
int it,m,is,i,j,nv,l0;
double p,q,s,vr,vi,poddr,poddi;
for (it=0; it
www.eeworm.com/read/452695/7436365
c program2_10.c
/* Program 2.10 Round tables again but shorter */
#include
int main(void)
{
float diameter = 0.0f; /* The diameter of a table */
float radius = 0.0f;
www.eeworm.com/read/452050/7451060
cpp 2513093_re.cpp
#include
using namespace std;
char map[9][9];
char lil[] = "v";
int pi, pj;
int mov[][2] = {{0,-1},{-1,0},{0,1},{1,0}};
void move(int step,int ini)
{
int i, j;
int a, b;
www.eeworm.com/read/452050/7451061
cpp 2514238_ac_15ms_192k.cpp
#include
using namespace std;
char map[9][9];
char lil[] = "v";
int pi, pj;
int mov[][2] = {{0,-1},{-1,0},{0,1},{1,0}};
void move(int step,int ini)
{
int i, j;
int a, b;