代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/232055/14209831
m examp5_2.m
syms x w; f=x^2*exp(-2*x)*sin(x+pi);
F=laplace(f,x,w)
ilaplace(F)
www.eeworm.com/read/128477/14294528
m test_ezplot.m
ezplot('sin(x)/x',[-4*pi 4*pi]);
title('Plot of sin x / x');
grid on;
www.eeworm.com/read/227881/14407009
m p4_seq.m
function s=p4_seq(L);
s=zeros(1,L);
for k=1:1:L
s(k)=exp(i*pi*((2*k-1)^2/L-(2*k-1))/4);
end
www.eeworm.com/read/225696/14524578
h data.h
#define PI 3.1415926 /* 在头文件中定义宏PI */
#define S(r) PI*(r)*(r) /* 在头文件中定义宏S(r) */
www.eeworm.com/read/225626/14529567
m exprience1_1.m
n=0:1:20;
xn=0.9.^n.*cos(0.2*pi*n+pi/3);
stem(n,xn)
www.eeworm.com/read/220331/14803553
m figure0508.m
t=0:1/100:2*pi;
x=sin(t);
y=cos(t);
plot(x,y);
grid on
www.eeworm.com/read/220331/14803578
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/220331/14803636
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/219349/14886973
m examp10_34.m
t=0:0.01:pi; y=sin(3*t+1); y1=3^0.75*sin(3*t+1+0.75*pi/2);
y2=glfdiff(y,t,0.75); plot(t,y1,t,y2)