代码搜索:Integration
找到约 3,762 项符合「Integration」的源代码
代码结果 3,762
www.eeworm.com/read/492033/6430537
h beamgen3d.h
#ifndef BEAMGEN3D_H
#define BEAMGEN3D_H
#include "alias.h"
struct matrix;
struct vector;
struct ivector;
/**
class beamgen3d describes threedimensional beam with general
cross section where c
www.eeworm.com/read/492033/6430550
h dst.h
#ifndef DST_H
#define DST_H
#include "alias.h"
struct matrix;
struct vector;
struct ivector;
class dstelem
{
public:
dstelem (void);
~dstelem (void);
void eleminit (long eid);
void tran_mat
www.eeworm.com/read/492033/6430579
h quadwedge.h
#ifndef QUADWEDGE_H
#define QUUADWEDGE_H
#include "alias.h"
struct matrix;
struct vector;
struct ivector;
/**
class quadwedge defines wedge elements with quadratic approximation functions
www.eeworm.com/read/492033/6430588
h linwedge.h
#ifndef LINWEDGE_H
#define LINWEDGE_H
#include "alias.h"
struct matrix;
struct vector;
struct ivector;
/**
class lintet defines tetrahedral elements with linear approximation functions
JK
www.eeworm.com/read/490082/6458168
m simptol.m
function [z, n] = simptol(func,a,b,tol)
% Routine for Simpson's 1/3 rule integration to specified tolerance.
%
% USAGE: [z, n] = traptol('function',a,b,tol)
%
% input: function = name of extern
www.eeworm.com/read/490082/6458173
m traptol.m
function [z, n] = traptol(func,a,b,tol)
% Routine for trapezoidal integration to specified tolerance.
%
% USAGE: [z, n] = traptol('function',a,b,tol)
%
% input: function = name of external func
www.eeworm.com/read/490082/6458178
m trapint.m
function z = trapint(x, y)
% Trapezoidal integration of (x,y) data
% UNEQUALLY SPACED DATA
%
% USAGE: z = trapint(x,y)
%
% input: x = vector of x values
% y = vector of y values
%
www.eeworm.com/read/489229/6476968
m quadndg.m
function int = quadndg(fun,xlow,xhigh,tol)
%usage: int = quadndg('Fun',xlow,xhigh)
%or
% int = quadndg('Fun',xlow,xhigh,tol)
%
%This function is similar to QUAD or QUAD8 for n-dimensional inte
www.eeworm.com/read/489229/6476977
m cquadnd.m
function nvol = cquadnd (fun,lowerlim,upperlim,nquad)
%usage: nvol = cquadnd (fun,lowerlim,upperlim,nquad);
% n -- number of dimensions to integrate
% nvol -- value of the n-dimensional integral
% fu
www.eeworm.com/read/489229/6476980
m gquadnd.m
function nvol = gquadnd (fun,lowerlim,upperlim,nquad)
%usage: nvol = gquadnd (fun,lowerlim,upperlim,nquad);
% n -- number of dimensions to integrate
% nvol -- value of the n-dimensional integral
% fu