代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/438605/7729383
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/438605/7729398
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/435830/7783346
m exd4.m
% example exd4
%----------------------------------------------------------------
% PURPOSE
% Structural Dynamics, time integration, time dependent
% boundary conditions.
%
% Note: example ex
www.eeworm.com/read/435830/7783353
m exd2.m
% example exd2
%----------------------------------------------------------------
% PURPOSE
% Structural Dynamics, time integration, full system.
%
% Note: example exd1 must be run first.
%
%---
www.eeworm.com/read/435830/7783357
m exd3.m
% example exd3
%----------------------------------------------------------------
% PURPOSE
% Structural Dynamics, time integration, reduced system.
%
% Note: example exd1.m must be run first.
%
www.eeworm.com/read/435830/7783441
m flw2i4s.m
function [es,et,eci]=flw2i4s(ex,ey,ep,D,ed)
% [es,et,eci]=flw2i4s(ex,ey,ep,D,ed)
%-------------------------------------------------------------
% PURPOSE
% Compute flows or corresponding quantities i
www.eeworm.com/read/199851/7818561
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/434325/7874263
m a7algos.m
%---------------------------------------------------------------------------
%A7ALGOS
%
% NUMERICAL METHODS: MATLAB Programs, (c) John H. Mathews 1995
% To accompany the text:
% NUMERICAL METHODS
www.eeworm.com/read/197649/7982995
m jifen.m
function h=jifen(x,dt)
% The function JIFEN performs a point wise integration of x(1,n).
%
% Input-
% x - column vector data x(1,n)
% dt - the true delta t
% Output-
% h - raw vector data h(n
www.eeworm.com/read/197649/7982996
m integr.m
function [xx]=integr(x,dt)
% The function INTEGR performs a point wise integration
% of 2-D data x(m,n).
% Only 1st column of 2-D input data x(:,1) is processed.
%
% Calling sequence-
% [xx]=i