代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/123211/14642428
m gquad.m
function area = gquad (fun,xlow,xhigh,mparts,bp,wf,y)
% area = gquad (fun,xlow,xhigh,mparts,bp,wf)
% or
% area = gquad (fun,xlow,xhigh,mparts,nquad)
% or
% area = gquad (fun,xlow,xhigh,mparts
www.eeworm.com/read/222369/14694416
m mlpg1d.m
% MLPG1D - A PROGRAM FOR SOLVING 1D ELASTOSTATIC PROBLEM: A BAR OF UNIT LENGTH SUBJECTED TO
% LINEAR BODY FORCE. THE LEFT END OF THE BAR IS FIXED AND THE RIGHT FREE.
% THE ANAL
www.eeworm.com/read/122185/14715680
c romberg.c
/*
* ROMBERG ALGORITHM 4.2
*
* To approximate I = integral ( ( f(x) dx ) ) from a to b:
*
* INPUT: endpoints a, b; integer n.
*
* OUTPUT: an array R. ( R(2,n) is the approximat
www.eeworm.com/read/221024/14765344
ca^~vorugant^ http:^^www.cs.ualberta.ca^~vorugant^
Date: Tue, 26 Nov 1996 16:47:57 GMT
Server: Apache/1.1.1
Content-type: text/html
Content-length: 4613
Last-modified: Wed, 13 Nov 1996 23:39:40 GMT
Kaladhar Voruganti
www.eeworm.com/read/194440/8194595
m blint.m
function gout=blint(g,t,flow,fhigh,delflow,delfhigh)
% gout=blint(g,t,flow,fhigh,delflow,delfhigh)
%
% BLINT performs band limited integration in the frequency domain.
% This is done by spectral div
www.eeworm.com/read/172012/9726698
m simpson.m
function I = simpson(fun,a,b,npanel)
% simpson Composite Simpson's rule
%
% Synopsis: I = simpson(fun,a,b,npanel)
%
% Input: fun = (string) name of m-file that evaluates f(x)
%