代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/116228/14982371
java matrix.java
/**
* This is the class for the matrix.
* It defines matrix arithmetic and floating-number arithmetic including
* addition, subtraction, multiplication, division,transposition,inversion
* and
www.eeworm.com/read/116228/14982382
class matrix.class
www.eeworm.com/read/216937/14985618
h matrix.h
//matrix.h
#ifndef MATRIX_H
#define MATRIX_H
//CMatrix
class CMatrix
{
public:
CMatrix();
CMatrix(int nRows, int nCols);
CMatrix(int nRows, int nCols, double value[]);
CMatrix(int nS
www.eeworm.com/read/216937/14985625
cpp matrix.cpp
//matrix.cpp
#include "stdafx.h"
#include "math.h"
#include "matrix.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
////////////////////
www.eeworm.com/read/216935/14985688
h matrix.h
//matrix.h
#ifndef MATRIX_H
#define MATRIX_H
//CMatrix
class CMatrix
{
public:
CMatrix();
CMatrix(int nRows, int nCols);
CMatrix(int nRows, int nCols, double value[]);
CMatrix(int nS
www.eeworm.com/read/216935/14985699
cpp matrix.cpp
//matrix.cpp
#include "stdafx.h"
#include "math.h"
#include "matrix.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
////////////////////
www.eeworm.com/read/216898/14987157
h matrix.h
/***************************************************************************
* blitz/matrix.h Declaration of the Matrix class
*
* $Id: matrix.h,v 1.6 2003/12/11 03:44:22 j
www.eeworm.com/read/216898/14987221
cc matrix.cc
/*
* Copyright (C) 1997 Todd Veldhuizen
* All rights reserved. Please see for terms and
* conditions of use.
*
*/
#ifndef BZ_MATRIX_CC
#define BZ_MATRI
www.eeworm.com/read/116096/14988370
h matrix.h
//////////////////////////////////////////////////////////////////////
// Matrix.h
//
// 操作矩阵的类 CMatrix 的声明接口
//
// 周长发编制, 2002/8
////////////////////////////////////////////////////////////////
www.eeworm.com/read/116096/14988385
cpp matrix.cpp
//////////////////////////////////////////////////////////////////////
// Matrix.cpp
//
// 操作矩阵的类 CMatrix 的实现文件
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////