代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/188318/8551058
m exa060701_3.m
%-----------------------------------------------------------------------------
% exa060701_3.m , for example 6.7.1 and 6.5.1
% to test butter.m
%---------------------------------------------------
www.eeworm.com/read/188318/8551067
m exa060701_2.m
%-----------------------------------------------------------------------------
% exa060701_2.m , for example 6.7.1 and 6.5.1
% to test buttord,lp2lp,bilinear ;
% to design Low-pass DF with s=2/Ts[(
www.eeworm.com/read/188318/8551100
m ass01_1_11_3.m
% assignment 1.11.3
clear all;close all;
N = 50;
n = 0:N-1;
% (1)
fs2 = 15;% sample rate
ts2 = 1/fs2;
x = sin(2*pi*5*n*ts2)+0.5*sin(2*pi*5*2*n*ts2)+0.2*sin(2*pi*5*3*n*ts2);
figure(1);
plot(
www.eeworm.com/read/188318/8551103
m exa100800_corrcoef.m
%------------------------------------------------------------------------
% exa100800_corrcoef.m,
% to test corrcoef.m ;
%------------------------------------------------------------------------
www.eeworm.com/read/289395/8555012
c gaussian.c
#include
#define pi 3.1415
double
gaussian(double x)
{
double resu;
resu=-0.5*x*x;
resu=exp(resu);
resu=resu/sq
www.eeworm.com/read/289288/8561135
m channelaerot1.m
function [zz,DopCom]=ChannelAeroT1(data);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%function [zz,DopCom]=ChannelAeroT1(data);
%Taxi Channel ,Doppler 250Hz
NumChan
www.eeworm.com/read/432937/8561476
m sources.m
function Ts=Sources(a,b)
% 产生自定以仿真信号
t=linspace(0,4*pi,100);
y=a*exp(-t/b).*cos(t);
Ts=[t',y'];
www.eeworm.com/read/432936/8561700
asv dblquads.asv
% dblquads.m
% 二重积分函数示例
% 确定积分上下限
x=linspace(0,pi,20);
y=linspace(-pi,pi,20);
[xx,yy]=meshgrid(x,y);
zz=sncs(xx,yy);
% 绘制函数图形
mesh(xx,yy,zz);
titile('sin(x)cos(y)+1')
% 计算积分
area=dblquad(@s
www.eeworm.com/read/432935/8562172
m example_subplot.m
% example_subplot.m
% subplot函数绘制示例
x=linspace(0,2*pi,100);
y=linspace(0,3*pi,150);
a=sin(x);
b=2*sin(x).*cos(x);
c=sin(y)./(cos(y)+eps);
% 绘制图形一:
subplot(2,2,1);
plot(x,a,'b*-');
title('fig
www.eeworm.com/read/388922/8564367
m gngauss.m
function[gsrv1,gsrv2]=gngauss(m,sgma)
if nargin==0,
m=0;sgma=1;
elseif nargin==1,
sgma=m;m=0;
end;
u=rand;
z=sgma*(sqrt(2*log(1/(1-u))));
u=rand;
gsrv1=m+z*cos(2*pi*u);
gsrv2=m+z*sin