代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/468470/6991199
txt dblxx.txt
VERSION 5.00
Private Sub cmdOK_Click()
Dim pi As Double
pi = 4 * Atn(1)
If Frame7.Visible = True Then
Text33.Text = "?"
Text39.Text = "?"
Dim w, b, er, f, dl, bt, dt, coc, ZO,
www.eeworm.com/read/467806/7001672
txt 例1.63.txt
>> x=linspace(0,2*pi,30); y=sin(x); plot(x,y)
>> hold on
>> z=cos(x); plot(x,z)
>> hold off
www.eeworm.com/read/467806/7001710
txt 例1.60.txt
例1.61
>> x=linspace(0,2*pi,30); % 生成一组线性等距的数值
>> y=sin(x);
>> plot(x,y)
www.eeworm.com/read/467806/7001716
txt 例1.61.txt
例1.61
>> x=linspace(0,2*pi,30); % 生成一组线性等距的数值
>> y=sin(x);
>> plot(x,y)
www.eeworm.com/read/221007/7074532
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/221007/7074580
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/460712/7105512
m chap4_10mf.m
clear all;
close all;
L1=-pi/2;L2=pi/2;
L=L2-L1;
h=pi/2;
N=L/h;
T=0.01;
x=L1:T:L2;
for i=1:N+1
e(i)=L1+L/N*(i-1);
end
u=trimf(x,[e(1),e(2),e(3)]); %The middle MF
plot(
www.eeworm.com/read/274556/7126911
m e0803.m
clear;
t=-2*pi:0.01:2*pi;
y=sin(t);
x=cos(t);
plot3(t,x,y)