代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/370634/9589750
m makesig.m
function [x,N] = makesig(SigName,N)
% [x,N] = makesig(SigName,N) Creates artificial test signal identical to the
% standard test signals proposed and used by D. Donoho and I. Johnstone
% in Wa
www.eeworm.com/read/173932/9629743
m sinc1.m
clear all
xx = -2*pi:.1:2*pi;
[X,Y] = meshgrid(xx);
z = sqrt(X^2+Y^2);
x = sinc(z);
www.eeworm.com/read/368137/9709982
cpp useptrswap.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/368108/9711548
m exm075_1.m
%exm075_1.m
clear,
t=pi;
eval('theta=t/2,y=sin(theta)');
www.eeworm.com/read/367926/9722659
m ex5_1.m
x=0:pi/100:2*pi;
y=2*exp(-0.5*x).*cos(4*pi*x);
plot(x,y)
www.eeworm.com/read/415598/11061752
h dsp.h
#define Unqualified 1
#define Qqualified 0
#define N 205
#define pi 3.14159
#define readend -1
www.eeworm.com/read/148157/12488684
m decay.m
function q=decay(p,x)
t=x(:,1);data=x(:,2);
a=p(1);b=p(2);
q=exp(-a*t).*sin(2*pi*b*t)-data;
q=sum(q.^2);
www.eeworm.com/read/335058/12551916
m gaussn.m
function g = gaussn(f0,n)
% function gn = gaussn(f0,n) : generates the order n derivative of the
% gaussian window, centered at frequency f0
% The wavelet gn is real, but it is its analytic form
www.eeworm.com/read/334396/12606889
m ex5_1.m
x=0:pi/100:2*pi;
y=2*exp(-0.5*x).*cos(4*pi*x);
plot(x,y)