代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
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
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
////////////////////
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
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
////////////////////
matrix.h
/***************************************************************************
* blitz/matrix.h Declaration of the Matrix class
*
* $Id: matrix.h,v 1.6 2003/12/11 03:44:22 j
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
matrix.h
//////////////////////////////////////////////////////////////////////
// Matrix.h
//
// 操作矩阵的类 CMatrix 的声明接口
//
// 周长发编制, 2002/8
////////////////////////////////////////////////////////////////
matrix.cpp
//////////////////////////////////////////////////////////////////////
// Matrix.cpp
//
// 操作矩阵的类 CMatrix 的实现文件
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////
matrix.c
/* matrix.c -- library routines for constructing dynamic matrices with
* arbitrary bounds using Iliffe vectors
****************************************************************
* HISTORY