代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/465437/7055016
cpp matrix.cpp
// Matrix.cpp: implementation of the CMatrix class.
//
//
//
// Coding and Memory analysis by Aris
// Please do not remove this header
//
///////////////////////////////////////////////////////
www.eeworm.com/read/464649/7067110
h matrix.h
// Matrix.h: interface for the Matrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX_H__3461DABF_4919_4B31_81EA_AC9397ABBAE1__INCLUDED_)
www.eeworm.com/read/140741/7069859
inl matrix.inl
// Matrix.inl 矩阵模板类函数(方法)定义
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31
#ifndef _MATRIX_INL
#define _MATRIX_INL
//矩阵乘法函数
template //最后结
www.eeworm.com/read/140741/7069869
h matrix.h
// Matrix.h 矩阵模板类头文件
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31.
#ifndef _MATRIX_H //避免多次编译
#define _MATRIX_H
#include //模板类valarray的标准头文件
#include //公共头文
www.eeworm.com/read/432091/7071257
h matrix.h
#ifndef HEADER_MATRIX
#define HEADER_MATRIX
//template
#include
using namespace std;
class Matrix
{
private :
int nRow ,nCol ;
www.eeworm.com/read/432091/7071258
cpp matrix.cpp
//#include
//using namespace std ;
#include "Matrix.h"
int Matrix::getRow()
{
return this->nRow ;
}
int Matrix::getCol()
{
return this->nCol ;
}
Matrix::Matrix(i
www.eeworm.com/read/208903/7101611
txt matrix.txt
0.06305545580612634 0.12946809378147953 0.029966184810160695 0.7775102656022335
0.011885412471549799 0.0300291990212079 0.0048390111708851696 0.9532463773363572
0.01289516968093946 0.035797027619048
www.eeworm.com/read/101073/7147397
h matrix.h
#ifndef MATRIX_H
#define MATRIX_H
// 定义适合数学运算的实数matrix类,数据将存放在buffer类中
#include
#include
#include
// buffer.h包含实数缓存类buffer的定义
#include "buffer.h"
/
www.eeworm.com/read/101073/7147402
cpp matrix.cpp
#include
#include
#include
#include
// 本程序实现matrix类
// 对matrix类的定义
#include "matrix.h"
matrix::matrix(buffer * b): // 缺省构造函数,产生0行0列空矩阵
rownum(0),co