代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.cpp
//#ifndef _MATRIX_H_
//#define _MATRIX_H_
#include "StdAfx.h"
#include "math.h"
class Matrix{
public:
double *Data;
private:
int m_nRow;
int m_nCol;
public:
Matrix();
matrix.inl
// Matrix.inl 矩阵模板类函数(方法)定义
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31
#ifndef _MATRIX_INL
#define _MATRIX_INL
//矩阵乘法函数
template //最后结
matrix.h
// Matrix.h 矩阵模板类头文件
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31.
#ifndef _MATRIX_H //避免多次编译
#define _MATRIX_H
#include //模板类valarray的标准头文件
#include //公共头文
matrix.h
// ENERGY211/CME211
//
// matrix.h - header file for Project 1
//
#include // Need this to use std::runtime_error
// class, for reporting errors
#ifndef CLASS_MATRIX // Make sure t
matrix.cpp
// ENERGY211/CME211
//
// matrix.cpp - Implementation file for Project 1
//
#include "matrix.h" // Must include corresponding header file
#include "vector.h"
#include // Need this to use