代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/123211/14642366
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/123211/14642378
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/222611/14683849
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/222611/14683877
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/221412/14741625
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/221412/14741656
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/121503/14755185
h iso639.h
/*
** FTA2000 ISO639_2 Language Support
**
** File Rev $Revision: \main\20010426_1.4_integration_branch\1 $
**
** Date $Date: Wed May 22 14:58:49 2002 $
**
** Machine generated
www.eeworm.com/read/221024/14772238
html http:^^www.cs.washington.edu^research^projects^weird^www^kaleidoscope-ecoop-94.html
Date: Tue, 10 Dec 1996 03:26:39 GMT
Server: NCSA/1.4.2
Content-type: text/html
Constraints and Object Identity
Constraints and Object Identity
www.eeworm.com/read/117859/14902338
m integt.m
%function integt
%INTEGT Unit test for the function INTEG.
% O. Lemoine - March 1996.
N=128;
% Integration of a sinusoid on a period
x=(0:N);
y=sin(2*pi*x/N);
som=integ(y,x);
if abs(som)>sqrt(eps),
www.eeworm.com/read/114395/15054990
m ex653.m
%----------------------------------------------------------------------------
% Example 6.5.3
% Gauss-Legendre quadrature of a functio