代码搜索:Raspberry Pi
找到约 10,000 项符合「Raspberry Pi」的源代码
代码结果 10,000
www.eeworm.com/read/324789/13245119
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/324789/13245164
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/324341/13271054
m ips49.m
clear;clc;
%Initial Condition
x(1,:)=[0.1,0,0];
%Simulation Setting
h=0.001;
% Set point r=0;
r=0;
k=1;
for t=h:h:3;
% The output of Fuzzy Controller
%fc is a function of Fuzzy
www.eeworm.com/read/324341/13271067
m ips.m
clear;clc;
%Initial Condition
x(1,:)=[0.1,0,0];
%Simulation Setting
h=0.001;
% Set point r=0;
r=0;
k=1;
for t=h:h:3;
% The output of Fuzzy Controller
%fc is a function of Fuzzy
www.eeworm.com/read/324341/13271071
m ips49_p.m
clear;clc;
%Initial Condition
x(1,:)=[0.1,0,0];
%Simulation Setting
h=0.001;
% Set point r=0;
r=0;
k=1;
for t=h:h:3;
% The output of Fuzzy Controller
%fc is a function of Fuzzy
www.eeworm.com/read/324341/13271076
m ips_gau.m
clear;clc;
%Initial Condition
x(1,:)=[0.1,0,0];
%Simulation Setting
h=0.001;
% Set point r=0;
r=0;
k=1;
for t=h:h:3;
% The output of Fuzzy Controller
%fc is a function of Fuzzy
www.eeworm.com/read/137520/13317226
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);