代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/161189/10439672
m shaw.m
function [A,b,x] = shaw(n)
%SHAW Test problem: one-dimensional image restoration model.
%
% [A,b,x] = shaw(n)
%
% Discretization of a first kind Fredholm integral equation with
% [-pi/2,pi/2] as
www.eeworm.com/read/161098/10451847
m ex0202.m
%用linspace和logspace函数生成行向量
x1=linspace(0,2*pi,5) %从0到2π等分成5个点
x2=logspace(0,2,3) %从1到100对数等分成3个点
www.eeworm.com/read/278599/10526612
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/278599/10526785
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/352500/10547164
asm example 3-11.asm
;Example 3 - 11. Float-Point Complex FFT Implementation Based on BFP Method for TMS320C54x
;*********************************************************************
; Function: cfft64
; Version :
www.eeworm.com/read/160246/10550513
m dj.m
n= 0:300-1;
x=1*sin(2*pi*2*0.005*n)+0.5*sin(2*pi*2*2*0.005*n)+0.2*sin(2*pi*2*3*0.005*n);
stem(x);
www.eeworm.com/read/160223/10554967
asv ex1.asv
Fs=100;
t=(1:100)/Fs;
y1=sin(2*pi*5*t);
y2=sin(2*pi*15*t);
y3=sin(2*pi*30*t);
y=y1+y2+y3;
plot(t,y)
www.eeworm.com/read/160223/10554970
m ex1.m
Fs=100;
t=(1:100)/Fs;
y1=sin(2*pi*5*t);
y2=sin(2*pi*15*t);
y3=sin(2*pi*30*t);
y=y1+y2+y3;
plot(t,y)