jmatrixmathsqu.h

来自「矩阵运算库」· C头文件 代码 · 共 35 行

H
35
字号
//  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 + =
减小字号Ctrl + -
显示快捷键?