代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/433274/8534589
cpp atomic.cpp
#include "compiler.h"
extern "C" {
#ifndef ATOMIC_OS_VERSION
// Inline assembly version
int AtomicAdd( int *pi, int v ){_CFE_;
int rv;
#ifdef GNU_INLINE_ASM
__asm__ __volatile__ (
"lock; xa
www.eeworm.com/read/433250/8537467
m chirplets.m
function x = chirplets(N, P)
% chirplets -- make a signal that is a sum of chirplets
%
% Usage
% x = chirplets(N, P)
%
% Inputs
% N length of signal
% P matrix of parameters [amp tim
www.eeworm.com/read/433250/8537647
m chirplets.m
function x = chirplets(N, P)
% chirplets -- make a signal that is a sum of chirplets
%
% Usage
% x = chirplets(N, P)
%
% Inputs
% N length of signal
% P matrix of parameters [amp tim
www.eeworm.com/read/289579/8542339
c 矩阵转换.c
void trans(int *p,int n)
{
int i,j,temp;
int *pi,*pj;
for(i=0;i
www.eeworm.com/read/188397/8543816
m constbuilder.m
function y = constbuilder(N)
b=ceil(log2(N));
p=zeros(N,b);
for k=0:(N-1)
u=dec2bin(k);
w=zeros(1,length(u));
for i=1:length(u)
w(i)=str2num(u(i));
end
www.eeworm.com/read/188318/8551029
m exa060702_2.m
%--------------------------------------------------------------------------
% exa060702_2 , for example 6.6.2 and 6.7.2;
% to test buttord.m and butter.m;
% to design a Butterworth Bandpass digital
www.eeworm.com/read/188318/8551041
m exa020502.m
%-------------------------------------------------------------------------
% exa020502.m, for example 2.5.2 and fig 2.5.6,
%------------------------------------------------------------------------
www.eeworm.com/read/188318/8551124
m exa030202.m
%----------------------------------------------------------------------------
% exa030202, for example 3.2.2 and fig 3.2.4
% to explain how to unwrap the phase
%------------------------------------
www.eeworm.com/read/388937/8563851
m fir.m
%利用Hamming窗设计FIR数字低通滤波器
ap=3;as=30;
fp=30; fs=50;
Fs=200;
Wp=0.3*pi;Ws=0.5*pi;
%确定滤波器阶数
f=(fs-fp)/Fs;
N=3.3/f;
M=N-1;
fprintf('滤波器阶数=% .0f\n',M);
%理想低通截频
Wc=(Wp+Ws)/2;
%窗函数的值
k=0:M;
Wk=0
www.eeworm.com/read/289181/8570100
m movieex.m
n=12;
m=moviein(n);
t=0:2*pi/n:4*pi;
x=0:pi/12:4*pi;
nj=length(x);
for i=1:n
for j=1:nj
y(j)=sin(x(j)-t(i));
end
plot(x,y);
axis([0,4*pi,-1.5,1.5])
m(:,i)=getframe;
en