⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jmatrixmathsqu.h

📁 矩阵运算库
💻 H
字号:
//  JMatrixMathSqu
//
//
//  Square Matrix functions
//
//
//  convention :
//
//		R	:	the result matrix
//
//		A	:	a operand matrix
//		B	:	a operand matrix
//		S	:	a scaler
//
//		N	:	row / column
//
//		when a matrix operates whit a scaler, each element of
//		this matrix operates with this scaler.
//
//


#pragma once




int		JMatrixSquInverse( double * A, unsigned int N, double tolerance ) ;
			//  A = inv(A)

int		JMatrixSquInverse( double * R, const double * A, unsigned int N, double tolerance ) ;
			//  R = inv(A)


⌨️ 快捷键说明

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