mes_matrix.h

来自「在数学计算中经常需要用到矩阵运算」· C头文件 代码 · 共 47 行

H
47
字号
// -*- c++ -*-
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001 Oh-Wook Kwon, all rights reserved. ohwook@yahoo.com
//
//                          Easy Matrix Template Library
// 
// This Easy Matrix Template Library is provided "as is" without any express 
// or implied warranty of any kind with respect to this software. 
// In particular the authors shall not be liable for any direct, 
// indirect, special, incidental or consequential damages arising 
// in any way from use of the software.
// 
// Everyone is granted permission to copy, modify and redistribute this
// Easy Matrix Template Library, provided:
//  1.  All copies contain this copyright notice.
//  2.  All modified copies shall carry a notice stating who
//      made the last modification and the date of such modification.
//  3.  No charge is made for this software or works derived from it.  
//      This clause shall not be construed as constraining other software
//      distributed on the same medium as this software, nor is a
//      distribution fee considered a charge.
//
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// Filename: mes_Matrix.h
///////////////////////////////////////////////////////////////////////////////
#ifndef	_MES_MATRIX_H_
#define	_MES_MATRIX_H_	

/* machine epsilon or unit roundoff error */
/* This is correct on most IEEE Real precision systems */
#define	MACH_EPS	DBL_EPSILON

#include "./mes_err.h"
#include "./mes_rand.h"
#include "./mes_eig.h"
#include "./mes_svd.h"
#include "./mes_solve.h"
#include "./mes_factor.h"
#include "./mes_perm.h"
#include "./mes_math.h"
#include "./mes_zeig.h"

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?