代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/339954/12191074
m calculatepllcoef.m
function [c1,c2] = calculatePLLCoef(zeta,bandwidth)
% Calculates coefficients used in the carrier tracking loop(PLL)
% zeta : tamping factor
% bandwidth : nosie bandwidth
tUpd = 0.001; %integrati
www.eeworm.com/read/252150/12297652
txt 关于webservice.txt
WebService简介
1.WebService就是一个应用程序,它向外界发布如何调用自身功能/服务的说明(即WSDL),其中包括服务地址、自己所能提供的服务接口、各个服务所能接受的参数等说明信息,从而让任何用户、任何应用从任何地方都可能使用到它所提供的这些服务,可以这样说:WebService是指可以通过Web技术实现动态链接的软件
2.WebService是新兴的电子商务应用形式,W ...
www.eeworm.com/read/251937/12310630
dsw historycomboexample.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/338293/12314658
m baart.m
function [A,b,x] = baart(n)
%BAART Test problem: Fredholm integral equation of the first kind.
%
% [A,b,x] = baart(n)
%
% Discretization of a first-kind Fredholm integral equation with
% kernel K and
www.eeworm.com/read/251835/12317394
m dquad.m
function I = dquad(z1,z2,sing1,z,beta,qdat)
%DQUAD: Numerical quadrature for the disk map.
% DQUAD(ZL,ZR,S,Z,BETA,QDAT,MIDPT) performs the integration for the SC
% disk formula. ZL and ZR are v
www.eeworm.com/read/251685/12325962
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/251685/12326005
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/251528/12339547
m reentry_f.m
% Dynamical model function for reentry problem.
% Discretization is done using a simple Euler
% time integration.
%
% Copyright (C) 2005-2006 Simo S鋜kk
www.eeworm.com/read/250652/12394200
m w3.m
%W3.m Non-dimensional function W_{III} in mode III velocity kernel
% = 1- Integral of C_{III}
% The integration is done numerically using the trapezoidal rule
% See also C3.m
function WIII = W3(ARG)