代码搜索:Raspberry Pi

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

代码结果 10,000
www.eeworm.com/read/323189/13347677

m figure0504.m

x=0:1/100:2*pi; y=sin(x); plot(x,y) line([0,2*pi],[0,0]) axis([0 2*pi -2 2])
www.eeworm.com/read/323181/13347880

m figure0417.m

syms x y z s t x='exp(-s)*cos(t)'; y='exp(-s)*sin(t)'; z='t'; ezmesh(x,y,z,[0,8,0,4*pi])
www.eeworm.com/read/136685/13366454

m exm07061_2.m

clear,t=pi;eval('theta=t/2,y=sin(theta)');who
www.eeworm.com/read/321972/13391552

m test_ezplot.m

ezplot('sin(x)/x',[-4*pi 4*pi]); title('Plot of sin x / x'); grid on;
www.eeworm.com/read/321160/13411486

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/321050/13412785

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/319404/13452415

m ex3601.m

%例36-1 绘制sin函数 fplot(@sin,[0,2*pi])
www.eeworm.com/read/319404/13452437

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/319404/13452675

m ex1009.m

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

m exm07061_2.m

clear,t=pi;eval('theta=t/2,y=sin(theta)');who