代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.hex
:020000040000FA
:1000000018F09FE518F09FE518F09FE518F09FE5C0
:1000100018F09FE5805F20B9F0FF1FE518F09FE51D
:10002000980000004000000044000000480000006C
:100030004C00000000000000000000005000000024
:10
matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H
#include
#include
using namespace std;
//矩阵类的定义
template class Mtx
{
private:
int nrows; //行数
int ncols;
matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H
#include
#include
using namespace std;
//矩阵类的定义
template class Mtx
{
private:
int nrows; //行数
int ncols;
matrix.h
#ifndef MATRIX_H
#define MATRIX_H
// 定义适合数学运算的实数matrix类,数据将存放在buffer类中
#include
#include
#include
// buffer.h包含实数缓存类buffer的定义
#include "buffer.h"
/
matrix.cpp
#include
#include
#include
#include
// 本程序实现matrix类
// 对matrix类的定义
#include "matrix.h"
matrix::matrix(buffer * b): // 缺省构造函数,产生0行0列空矩阵
rownum(0),co
matrix.h
//////////////////////////////////////////////////////////////////////
// Matrix.h
//
// 操作矩阵的类 CMatrix 的声明接口
//
// 周长发编制, 2002/8
////////////////////////////////////////////////////////////////
matrix.cpp
//////////////////////////////////////////////////////////////////////
// Matrix.cpp
//
// 操作矩阵的类 CMatrix 的实现文件
//
// 周长发编制, 2002/8
//////////////////////////////////////////////////////////////