代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/490601/6449587
m chap1_16.m
%PID Controller with changing integration rate
clear all;
close all;
%Big time delay Plant
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_
www.eeworm.com/read/489229/6476957
m quad2dc.m
function int = quad2dc(fun,xlow,xhigh,ylow,yhigh,tol)
%usage: int = quad2dc('Fun',xlow,xhigh,ylow,yhigh)
%or
% int = quad2dc('Fun',xlow,xhigh,ylow,yhigh,tol)
%
%This function is similar to QUA
www.eeworm.com/read/489229/6476962
m contents.m
% Numerical Integration Toolbox
%
% MATLAB Toolbox for 1-D, 2-D, and n-D Numerical Integration
%
% The original 1-D routines were obtained from NETLIB and were
% written by
% Howard Wilson
www.eeworm.com/read/489229/6476988
m quad2dgold.m
function int = quad2dg(fun,xlow,xhigh,ylow,yhigh,tol)
%usage: int = quad2dg('Fun',xlow,xhigh,ylow,yhigh)
%or
% int = quad2dg('Fun',xlow,xhigh,ylow,yhigh,tol)
%
%This function is similar to QUA
www.eeworm.com/read/486900/6519674
m m7_6.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/477625/6729427
m chap1_9.m
%PID Controller with changing integration rate
clear all;
close all;
%Big time delay Plant
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_
www.eeworm.com/read/477625/6729443
m chap1_7.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/477455/6735999
m xintegration.m
function xIntegration
% 积分例子
% An Example of Integration of a function f(x) from a to b
% by using TRAPZ (trapezoidal numerical integration),
% QUAD (adaptive Simpson quadrature), and QUADL (adap
www.eeworm.com/read/476524/6755511
m chap1_13.m
%Integration Separation PID Controller
clear all;
close all;
ts=20;
%Delay plant
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_1=0;u_2=0;u_3=0;u
www.eeworm.com/read/476524/6755527
m chap1_16.m
%PID Controller with changing integration rate
clear all;
close all;
%Big time delay Plant
ts=20;
sys=tf([1],[60,1],'inputdelay',80);
dsys=c2d(sys,ts,'zoh');
[num,den]=tfdata(dsys,'v');
u_