代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/236814/13998228
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/202682/15375872
html package.html
Chat server which demonstates using the text line codec and Spring integration.
www.eeworm.com/read/202630/15377506
c main.c
/* $Id: main.c,v 1.2 2005/06/20 03:28:52 zlb Exp $ */
/* 递归方式自适应数值积分串行主程序 */
#include
#include
#include
#include "function.h"
#include "integration.h"
int
main(int arg
www.eeworm.com/read/202224/15389251
m mm2401.m
% mm2401.m
x = -1:.17:2;
y=humps(x);
xx=[x;x;x];
yy=[y;zeros(size(y));y];
xx=xx(:)';
yy=yy(:)';
xi=linspace(-1,2);
yi=humps(xi);
plot(xx,yy,':',xi,yi,[-1,2],[0 0],'k')
title('Figure 24.1
www.eeworm.com/read/201792/15396335
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/111072/15519598
cpp simpson1.cpp
//Simpson method of Integration
//This is definite step version of c++
#include
#include
#include
int N; //define the step:h=(b-a)/N
//-----------integra
www.eeworm.com/read/111071/15519599
cpp trapezoid2.cpp
//Trapezoid method of Integration
//This is auto variable step version of c++
#include
#include
#include
const double eps=1.0e-8; //error limit
//--------
www.eeworm.com/read/111071/15519600
cpp trapezoid2a.cpp
//Trapezoid method of Integration
//This is auto variable step version of c++
#include
#include
#include
const double eps=1.0e-8;
//-----------integrated
www.eeworm.com/read/111071/15519601
cpp trapezoid1.cpp
//Trapezoid method of Integration
//This is the definite step version of c++
#include
#include
int N; //ensure the step
//-----------integrated fuction-------------
d