代码搜索:Numerical
找到约 2,441 项符合「Numerical」的源代码
代码结果 2,441
www.eeworm.com/read/366508/2889955
h ocn_g02.h
/*
*
* Copyright 1996 Numerical Algorithms Group
*
* Include file for NAG C Library g02 Chapter
*
* Mark 4, revised, 1996.
* Mark 5 revised. IER-2156 (Feb 1998).
* Mark 6 r
www.eeworm.com/read/361261/2947906
h custom_shape_types.h
#ifndef CUSTOM_SHAPE_TYPES_H
#define CUSTOM_SHAPE_TYPES_H
#include "common.h"
#include "splaytree_types.h"
#include "expr_types.h"
typedef struct CUSTOM_SHAPE_T {
/* Numerical id */
int id;
in
www.eeworm.com/read/471742/6888656
m simp.m
%simp.m
function simpu=simp(f,inc)
%Simpson's rule for numerical integration
%f is an odd array of evaluated functions in steps inc
ip=length(f); %must be an odd number
s1=sum(f(2:2:ip-1
www.eeworm.com/read/394488/8221537
m ode4m.m
function [time, y_sol] = ode4m( dydt, time, y0 )
% Henri Gavin, Civil and Environmental Engineering, Duke Univsersity, Jan. 2001
% WH Press, et al, Numerical Recipes in C, 1992, Section 16.1
pts = le
www.eeworm.com/read/370047/9621412
c bspdegelev.c
#include "mexmat.h"
#define min(x,y) (x < y ? x : y)
#define max(x,y) (x > y ? x : y)
// Compute logarithm of the gamma function
// Algorithm from 'Numerical Recipes in C, 2nd Edition' pg2
www.eeworm.com/read/132413/14090098
c nrutil.c
#include
#include
void nrerror(error_text)
char error_text[];
{
void exit();
fprintf(stderr,"Numerical Recipes run-time error...\n");
fprintf(stderr,"%s\n",error_t
www.eeworm.com/read/107173/15612166
c integrate.c
#include
#include
#define EPS 1.0e-6
#define JMAX 20
/* integrate.c -- integration routines from Numerical Recipes, */
/* converted to double */
/* Date: Tue May 09 09:37:14 PDT 20
www.eeworm.com/read/147363/12559265
h sdperr.h
#ifndef __SDP_ERROR_CODES__
#define __SDP_ERROR_CODES__
// sdp error codes
// First four bits - SEVERITY(11), CUSTOMER FLAG(1), RESERVED(0)
#define SDP_INVALID_FORMAT 0xe0
www.eeworm.com/read/432987/8556492
cpp nrutil.cpp
//nrutil.cpp
#include "StdAfx.h"
#include
#include
#include
//报告错误
void nrerror(char *error_text)
{
printf("Numerical Recipes run-time error...\n");
printf
www.eeworm.com/read/285004/8877039
c nrutil.c
#include
#include
void nrerror(error_text)
char error_text[];
{
void exit();
fprintf(stderr,"Numerical Recipes run-time error...\n");
fprintf(stderr,"%s\n",error_text);
fpr