代码搜索:closed-loop
找到约 171 项符合「closed-loop」的源代码
代码结果 171
www.eeworm.com/read/244380/12869801
m clp_rock.m
% Simulation of the closed-loop rocket stabilization system
%
% flight time
t = input ('Enter time t = ');
% closed-loop interconnection
sim_rock
clp_ic = starp(sim_ic,K);
%
% response to the
www.eeworm.com/read/479910/6682979
m fig7_64.m
% Figure 7.64 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% Robust Servo Example
%% Example 7.27; Figure 7.64
clf;
F=[0 1; 0 -1];
G=[0;1];
www.eeworm.com/read/479910/6683007
m fig7_63.m
% Figure 7.63 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% Robust Servo Example
%% Example 7.27; Figure 7.63
clf;
F=[0 1; 0 -1];
G=[0;1];
www.eeworm.com/read/479910/6683033
m fig7_62.m
% Figure 7.62 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% Robust Servo Example
%% Example 7.27; Figure 7.62
clf;
clear all;
F=[0 1; 0 -1
www.eeworm.com/read/479910/6683142
m fig7_60.m
% Figure 7.60 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% Robust Servo Example
%% Example 7.27; Figure 7.60
clf;
F=[0 1; 0 -1];
G=[0;1
www.eeworm.com/read/479910/6683232
m fig6_48.m
% Fig. 6.48 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
clear all;
close all;
num=0.01*[20 1];
den=[1 0 0]+[0 num];
w=logspace(-3,1,100);
[m,p]=bode(
www.eeworm.com/read/479910/6683266
m fig7_61.m
% Figure 7.61 Feedback Control of Dynamic Systems, 4e
% Franklin, Powell, Emami
%
% Robust Servo Example
%% Example 7.27; Figure 7.61
clf;
F=[0 1; 0 -1];
G=[0;1
www.eeworm.com/read/476392/6759350
m exb2.m
num = 100;
den = [1 26 216 576];
s1= -10+j*1; % Desired location of closed-loop poles
[numo, deno, denc]=rldesign(num, den, s1); %PID design
t = 0:.01:4;
c= step(numo, de
www.eeworm.com/read/257010/11960748
m exb2.m
num = 100;
den = [1 26 216 576];
s1= -10+j*1; % Desired location of closed-loop poles
[numo, deno, denc]=rldesign(num, den, s1); %PID design
t = 0:.01:4;
c= step(numo, de
www.eeworm.com/read/339293/12244282
m expl10_15.m
% Example 10.15
s=tf('s');
G=[1 0; 5 1];
K=1/s*[1 0; -5 1];
S=inv(eye(2)+G*K);
T=G*K*S;
t=0:.01:40;
r1=ones(1,length(t));
r2=[zeros(1,(length(t)-1)/2) ones(1,(length(t)+1)/2)];
r=[r