代码搜索:Simpson
找到约 618 项符合「Simpson」的源代码
代码结果 618
www.eeworm.com/read/298372/7965037
c simpson.c
www.eeworm.com/read/296450/8102617
c simpson.c
www.eeworm.com/read/144399/12797660
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)
%
www.eeworm.com/read/140697/13066905
m simpson.m
function [res] = SIMPSON(FN,A,B,sqq,sf,sp)
% This function is used by the Piecewise Linear Rayleigh Ritz
% Method (Algorithm 11.5) to perform Composite Simpson's Rule
syms('H','I','Y','Z','x');
www.eeworm.com/read/140697/13067105
m simpson.m
function [res] = SIMPSON(FN,A,B,sqq,sf,sp)
% This function is used by the Piecewise Linear Rayleigh Ritz
% Method (Algorithm 11.5) to perform Composite Simpson's Rule
syms('H','I','Y','Z','x');
www.eeworm.com/read/327247/13090894
c simpson.c
www.eeworm.com/read/319222/13458001
c simpson.c
www.eeworm.com/read/310332/13653454
c simpson.c
www.eeworm.com/read/141297/5773852
c simpson.c
/* -*- c -*- */
#include
#include
#define EPS (1.0e-5)
#define JMAX 16
/*
* Compute the Nth stage of refinement of an extended trapezoidal
* rule. FUNC is input as a pointer to
www.eeworm.com/read/141297/5773853
h simpson.h
double qsimp (double (*func)(double),
double a, double b);