代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/424063/10499175
m il3_8fun.m
% il3_8fun.m
function f=il3_8fun(x,p)
f=1/sqrt(2*pi)*exp((-(x-p).^2)/2).*log2(2./(1+exp(-2*x.*p)));
www.eeworm.com/read/424063/10501468
m cm_f34.m
% script that generates the figure 3.4 of Carrier modulation chapter
snrindB=0:0.25:18;
for i=1:length(snrindB),
snr=10^(0.1*snrindB(i));
P2(i)=Qfunct(sqrt(2*snr));
P4(i)=2*Qfunct(sqrt(4*sn
www.eeworm.com/read/278816/10504356
c sine.c
/* sine.c - sine wavetable of length D */
#include
double sine(D, i)
int D, i;
{
double pi = 4 * atan(1.0);
return sin(2 * pi * i / D);
}
www.eeworm.com/read/278816/10504369
txt dbp.m.txt
% dbp.m - ideal bandpass FIR filter
%
% h = dbp(wa, wb, N) = row vector
%
% N = 2M+1 = filter length (odd)
% wa, wb = cutoff frequencies in [rads/sample]
function h = dbp(wa, wb, N)
M = (N-1)/2;
fo
www.eeworm.com/read/160697/10505862
txt xx.m.txt
[t,x]=ode45(@duffing,[0,2800],[0,1.5]);
x1=x(:,1);
x2=x(:,2);
x1=mod(x1,2*pi);
x1(x1>pi)=x1(x1>pi)-2*pi;
figure;%subplot(2,1,1)
plot(x1,x2)
xlabel('displacement ')
ylabel('velocity')
ti
www.eeworm.com/read/160633/10512136
mac c2cxrad2.mac
******************************************************************************
* FILE: c25cxrad2.mac --> macro file for radix 2 fft's based on 320c5x *
*
www.eeworm.com/read/423959/10512961
cpp c13-2.cpp
#include
#include
using namespace std;
int main()
{int a;
couta;
cout
www.eeworm.com/read/423959/10512983
cpp c13-3.cpp
#include
using namespace std;
int main()
{int a=21;
cout.setf(ios::showbase);
cout
www.eeworm.com/read/423959/10513249
cpp c3-12.cpp
#include
#include
#include
using namespace std;
int main()
{int s=1;
double n=1,t=1,pi=0;
while((fabs(t)) > 1e-7)
{pi=pi+t;
n=n+2;
s=-s;
t=s/n;
www.eeworm.com/read/160618/10514205
m lijian.m
n=1:1024;
x=cos(0.1*2*pi*n);
%tfrsp(x');
%tfrwv(x');
%tfrpwv(x');
tfrcw(x')
%tfrspwv(x');