代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/459616/7270222
h matrix.h
#ifndef Matrix_
#define Matrix_
#include "xcept.h"
template
class Matrix {
friend ostream& operator
www.eeworm.com/read/459616/7270271
cpp matrix.cpp
// test matrix class
#include
#include "matrix.h"
void main(void)
{
try {
Matrix X(3,2), Y, Z;
int i, j;
for (i = 1; i
www.eeworm.com/read/459616/7270433
out matrix.out
X(3,1) = 7
X is
3 4
5 6
7 8
Y is
3 4
5 6
7 8
X incremented by 2 is
5 6
7 8
9 10
Y + X is
8 10
12 14
16 18
-(Y + X) is
-8 -10
-12 -14
-16 -18
W is
2 3
www.eeworm.com/read/459061/7283055
inl matrix.inl
// Matrix.inl 矩阵模板类函数(方法)定义
// Ver 1.0.0.0
#ifndef _MATRIX_INL
#define _MATRIX_INL
//矩阵乘法函数
template //最后结果在mOut中
matrix& MatrixMultiply
www.eeworm.com/read/459061/7283060
h matrix.h
// Matrix.h 矩阵模板类头文件
#ifndef _MATRIX_H //避免多次编译
#define _MATRIX_H
#include //模板类valarray的标准头文件
#include
#include "comm.h" //公共头文件
#include //数学头文件
#inc
www.eeworm.com/read/458471/7296370
h matrix.h
////////////////////////////////
// Matrix TCL Lite v1.13
// Copyright (c) 1997-2002 Techsoft Pvt. Ltd. (See License.Txt file.)
//
// Matrix.h: Matrix C++ template class include file
// Web: htt
www.eeworm.com/read/458356/7298737
lib matrix.lib
www.eeworm.com/read/458356/7298738
src matrix.src
www.eeworm.com/read/458356/7298745
doc matrix.doc
www.eeworm.com/read/457837/7317199