C# 클래스 LinearEquationSolver, MeshToys

파일 보기 프로젝트 열기: GameMakersUnion/MeshToys

공개 메소드들

메소드 설명
Solve ( float M ) : bool

Computes the solution of a linear equation system.

메소드 상세

Solve() 공개 정적인 메소드

Computes the solution of a linear equation system.
public static Solve ( float M ) : bool
M float /// The system of linear equations as an augmented matrix[row, col] where (rows + 1 == cols). /// It will contain the solution in "row canonical form" if the function returns "true". ///
리턴 bool