📄 jmatrixmathsqu.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 + -