代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/273606/10908778
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/272894/10937228
dpr ex.dpr
{
Enumerate
t=(Arcsin(x)+2Pi*k)^2 or (Pi-Arcsin(x)+2Pi*k)^2
t k is O(10^6)
}
program Ural_1360(Input,Output);
const
Range=1E12;
Limit=159174;//Sqrt(Range)/2/Pi
type
TIndex=Lo
www.eeworm.com/read/417309/10995966
txt 02-03.txt
>> a=1;b=2;c=sqrt(3);
>> cos_alpha = (a^2 + b^2 -c^2) / (2*a*b)
>> alpha=acos(cos_alpha)
>> alpha=alpha*180/pi
www.eeworm.com/read/470699/6906035
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/470699/6906083
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/469046/6984204
m 3-12.m
plot(0:pi/20:2*pi,sin(0:pi/20:2*pi))
text(pi,0,' \leftarrow sin(\pi)','FontSize',18)