代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/206562/7129721
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/206562/7129769
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/463779/7175598
m bindct.m
function [dctcoef, bindct, bindct4] = bindct(ver, scaling)
% This file shows the coefficients and frequency responses of
% the 7 configuration of binDCT Type C, as shown in the
% SPIE paper, Config.
www.eeworm.com/read/463205/7186356
c dft.c
/******************************************************************************
FILE
dft.c - This is the C source code for the implmentation of the
Discrete Fourier Transform (DFT) algorithm.
www.eeworm.com/read/459103/7282665
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);