代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/421635/10723176
cpp vc0407.cpp
// Example 4-7:求π的近似值
#include
#include
void main()
{
int s = 1;
double n = 1.0, u = 1.0, pi = 0.0;
while(fabs(u)>=1e-4)
{
pi = pi+u;
n = n+2;
s = -s;
u =
www.eeworm.com/read/350637/10724606
c exp_out.c
#include
void main(void)
{
float pi = 3.14159;
float radius = 2.0031;
printf("The circle's area is %e\n", 2 * pi * radius);
printf("The circle's area is %E\n", 2 * pi
www.eeworm.com/read/158826/10725081
m num5.m
%利用Xa和Ha进行线性卷积的验证
close all;
[x]=Xa(444.128,50*sqrt(2).*pi,50*sqrt(2).*pi,0.001);
[y]=R(10,50);
X=dft(x,50);
Y=dft(y,50);
Z=X.*Y;
subplot(2,1,1);
stem(Z);
N=50;
a=conv1(x,y,N,N);
A=dft(a,99
www.eeworm.com/read/158826/10725092
m facter1.m
function facter1(T)
n=0:50;
x=Xa(444.128,50.*sqrt(2.0).*pi,50.*sqrt(2.0).*pi,T);
subplot(3,1,1);
stem(x);
title('理想采样信号序列');
k=-25:25;
W=(pi./12.5).*k;
X=x*(exp(-j*pi./12.5)).^(n'*k);
magX=ab
www.eeworm.com/read/350637/10725357
c show_tan.c
#include
#include
void main(void)
{
double pi = 3.14159265;
printf("Tangent of pi is %f\n", tan(pi));
printf("Tangent of pi/4 is %f\n", tan(pi / 4.0));
}
www.eeworm.com/read/350636/10726506
c exp_out.c
#include
void main(void)
{
float pi = 3.14159;
float radius = 2.0031;
printf("The circle's area is %e\n", 2 * pi * radius);
printf("The circle's area is %E\n", 2 * pi
www.eeworm.com/read/350636/10727090
c show_tan.c
#include
#include
void main(void)
{
double pi = 3.14159265;
printf("Tangent of pi is %f\n", tan(pi));
printf("Tangent of pi/4 is %f\n", tan(pi / 4.0));
}
www.eeworm.com/read/421592/10727976
txt music.txt
clear;
q1=pi*2/3;q2=pi*1/3;q3=pi*3/2;q4=pi*5.8/6; %四个输入信号的方向
E=1;
lam=1;
www.eeworm.com/read/421547/10730156
m toeplitz_page110.m
%%%%%%可能是程序写的不好,算法的仿真结果不行,分辨力较差@@@@@@@@@
clc;
clear ;
close all;
tic
M=20;%阵元数目
N=3;%信源数目
b=5;%形成的波束个数
snap=1000;%快拍数目
C=3e8;
f0=10e6;
lamda=C/f0;
d=0.5*lamda;
% k=d/lamda;
theta0=50;
t
www.eeworm.com/read/350586/10730219
c fir.c
#include "DSP281x_Device.h" // DSP281x Headerfile Include File
#include "DSP281x_Examples.h" // DSP281x Examples Include File
#include "f2812a.h"
#include"math.h"
#define FIRNUMBER 25
#de