代码搜索:Raspberry Pi

找到约 10,000 项符合「Raspberry Pi」的源代码

代码结果 10,000
www.eeworm.com/read/144891/12764158

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
www.eeworm.com/read/244937/12830608

m sinc.m

function y=sinc(x) % Y=SINC(X), determines the sinc function y=(sin(pi*x)+(x==0))./(pi*x+(x==0));
www.eeworm.com/read/243217/12955074

m ex1009.m

%例10-9 函数句柄的创建和调用 fhd=@sin x=0:0.25*pi:2*pi; fhd(x)
www.eeworm.com/read/242478/13003151

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
www.eeworm.com/read/328253/13037788

m ex2302.m

%例23-2 简单画线函数line x=0:0.4*pi:2*pi; y=sin(x); line(x,y) %如图23-3
www.eeworm.com/read/140880/13054573

hmm test.hmm

M= 2 N= 3 A: 0.333 0.333 0.333 0.333 0.333 0.333 0.333 0.333 0.333 B: 0.5 0.5 0.75 0.25 0.25 0.75 pi: 0.333 0.333 0.333
www.eeworm.com/read/140057/13112777

m ex0405.m

%用plot(x1,y1,x2,y2,…)绘制多条曲线 x=0:0.1:2*pi; plot(x,sin(x),x,cos(x),x,sin(3*x)) %画三条曲线
www.eeworm.com/read/324789/13244933

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
www.eeworm.com/read/137520/13317170

m fesin.m

function f=fesin(x) f=exp(-0.5*x).*sin(x+pi/6);
www.eeworm.com/read/323189/13347652

m figure0508.m

t=0:1/100:2*pi; x=sin(t); y=cos(t); plot(x,y); grid on