摘要: 自己随便写着玩的,时间复杂度O(n^3),小矩阵使用没什么问题,大矩阵……还是用openCV或者其他的一些线性代数库吧高斯消元法具体内容自己google吧头文件#ifndef inverse_matrix_h_#define inverse_matrix_h_#includevoid inverseMatrix(double** input,double**output,int dimension);void swap(double** input,double**output,int dimension,int first_row,int second_row);void reorderOu 阅读全文
posted @ 2014-04-10 17:00 handspeaker 阅读(5840) 评论(0) 推荐(0) 编辑