• 大小: 2KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: C/C++
  • 标签: c++  矩阵  

资源简介

用c++语言实现对矩阵进行各种运算,包括矩阵相乘,求逆,转值,单位阵运算等各种信息

资源截图

代码片段和文件信息

// Matrix.cpp: implementation of the CMatrix class.
//
//////////////////////////////////////////////////////////////////////



#include “stdafx.h“
#include “Matrix.h“
#include 
#include 
#include 
#include 

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////





CMatrix::CMatrix(int row)//重载构造函数
{
int ij;

  m_mat=new double *[row];

for(i=0;i  m_mat[i]=new double [row];
for(i=0;i for(j=0;j m_mat[i][j]=0;
m_row=row;
m_col=row;
return;



}


CMatrix::CMatrix(int row int col)//重载构造函数
{
int ij;

m_mat=new double *[row];

for(i=0;i  m

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       6682  2003-05-05 20:38  matrix\Matrix.cpp

     文件       1407  2011-05-30 15:32  matrix\Matrix.h

     目录          0  2012-03-25 01:14  matrix

----------- ---------  ---------- -----  ----

                 8089                    3


评论

共有 条评论