• 大小: 8.65MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-09
  • 语言: C/C++
  • 标签: 矩阵运算  C++  

资源简介

实现矩阵的四则运算,转置,行列式,求逆等基本运算。

资源截图

代码片段和文件信息

#include“stdafx.h“
#include“base_Matrix.h“

base_Matrix::base_Matrix()
{

}


base_Matrix::base_Matrix(int Input_Line_Numint Input_Column_Num)
{
this->Line_Num=Input_Line_Num;

this->Column_Num=Input_Column_Num;

}


base_Matrix::~base_Matrix()
{

}


double  Random_from_Zero_to_One( )
{

double Out_Num= ( ( double )( rand() % 10000) / 10000 ) ; 

return  Out_Num;

}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-05-03 11:54  矩阵运算C++\
     目录           0  2015-06-12 16:56  矩阵运算C++\Debug\
     文件      116736  2014-07-14 02:40  矩阵运算C++\Debug\Matrix_Plus_Plus.exe
     文件         406  2014-07-13 18:57  矩阵运算C++\Debug\Matrix_Plus_Plus.exe.manifest
     文件      588732  2014-07-14 02:40  矩阵运算C++\Debug\Matrix_Plus_Plus.ilk
     文件     1043456  2014-07-14 02:40  矩阵运算C++\Debug\Matrix_Plus_Plus.pdb
     目录           0  2015-06-12 16:56  矩阵运算C++\Matrix_Plus_Plus\
     文件         409  2012-11-21 16:02  矩阵运算C++\Matrix_Plus_Plus\base_Matrix.cpp
     文件         422  2014-07-13 19:01  矩阵运算C++\Matrix_Plus_Plus\base_Matrix.h
     目录           0  2015-06-12 16:56  矩阵运算C++\Matrix_Plus_Plus\Debug\
     文件        7166  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\base_Matrix.obj
     文件       14728  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\CL.read.1.tlog
     文件        3634  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\CL.write.1.tlog
     文件         710  2014-07-10 23:15  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.Build.CppClean.log
     文件           2  2014-07-13 18:51  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.exe.embed.manifest
     文件          68  2014-07-13 18:51  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.exe.embed.manifest.res
     文件         381  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.exe.intermediate.manifest
     文件          66  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.lastbuildstate
     文件         957  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.log
     文件      123054  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.obj
     文件     9961472  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.pch
     文件           0  2014-07-10 23:15  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus.write.1.tlog
     文件         222  2014-07-13 18:51  矩阵运算C++\Matrix_Plus_Plus\Debug\Matrix_Plus_Plus_manifest.rc
     文件       73027  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\Real_Matrix.obj
     文件        9506  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\cl.command.1.tlog
     文件      149429  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\complex_matrix.obj
     文件       39572  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\complex_num.obj
     文件        4516  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\link.command.1.tlog
     文件        4570  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\link.read.1.tlog
     文件        1562  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\link.write.1.tlog
     文件         990  2014-07-14 02:40  矩阵运算C++\Matrix_Plus_Plus\Debug\mt.command.1.tlog
............此处省略29个文件信息

评论

共有 条评论