代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.reg
REGEDIT
; This .REG file may be used by your SETUP program.
; If a SETUP program is not available, the entries below will be
; registered in your InitInstance automatically with a call to
;
matrix.rc
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
matrix.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Release--------------------
Command Lines
Creating command line "rc.exe /l 0x804 /f
matrix.cpp
// Matrix.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "Matrix.h"
#include "MainFrm.h"
#include "MatrixDoc.h"
#include "MatrixView.h"
#ifdef _DEB
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