代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/308461/13700683
asv fsk.asv
x=0:0.01:8;
t=[ones(1,100),zeros(1,100),ones(1,100),ones(1,100),zeros(1,100),zeros(1,100),ones(1,100),zeros(1,101)];
y=sin(x.*(2*pi+2*t));
plot(x,y);
www.eeworm.com/read/306970/13734254
s idct_bfin.s
/*
* idct BlackFin
*
* Copyright (C) 2007 Marc Hoffman
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under
www.eeworm.com/read/306970/13734257
s vp3_idct_bfin.s
/*
* vp3_idct BlackFin
*
* Copyright (C) 2007 Marc Hoffman
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it un
www.eeworm.com/read/306917/13735211
m lag.m
function s=lagrange(t,n)
for i=1:n
h=2*pi/n;
x(i)=i*h;
end
s=0;
for i=1:n
l=1;
for j=1:n
if j~=i
l=l*(t-x(j))/(x(i)-x(j));
end
end
s=s+
www.eeworm.com/read/306917/13735312
m lag.m
function s=lagrange(t,n)
for i=1:n
h=2*pi/n;
x(i)=i*h;
end
s=0;
for i=1:n
l=1;
for j=1:n
if j~=i
l=l*(t-x(j))/(x(i)-x(j));
end
end
s=s+
www.eeworm.com/read/306728/13739296
m ex5_4.m
x=0:pi/100:2*pi;
y1=0.2*exp(-0.5*x).*cos(4*pi*x);
y2=2*exp(-0.5*x).*cos(pi*x);
plotyy(x,y1,x,y2);
www.eeworm.com/read/306728/13739344
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/306347/13746064
m phaseunwrap11.m
clear all
clc
h=fspecial('gaussian',9,1);
%度如图 并求平均值
I1=imread('a01.bmp','bmp');
I1=filter2(h,double(I1(:,:,1)));
I2=imread('a02.bmp','bmp');
I2=filter2(h,double(I2(:,:,1)));
I3=imread('a03.bm