代码搜索:LED Matrix
找到约 10,000 项符合「LED Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/101563/15825181
txt matrix.txt
/**************************************************************************\
MODULE: matrix
SUMMARY:
Macros are deined providing template-like classes for dynamic-sized,
recatngular matric
www.eeworm.com/read/101563/15825207
h matrix.h
#ifndef NTL_matrix__H
#define NTL_matrix__H
#include
#include
// matrix templates
#define NTL_matrix_decl(T,vec_T,vec_vec_T,mat_T) \
class mat_T { \
pub
www.eeworm.com/read/101344/15836723
cpp matrix.cpp
// 2003 - 2004 学年度(下)C++课程设计题目:矩阵综合运算
// 内容:
// 设计一个通用的矩阵综合算法;能实现加、减、乘、转置以及初始化设置功能(大小和初值)。
//(运算符重载)
// 要求:
// 1.采用面向对象程序设计方法。
// 2.可以完成对两个矩阵初始设置的输入。
// 3.形象化显示正确结果。
// 4.能 ...
www.eeworm.com/read/101230/15840359
h matrix.h
const int INITMSIZE =400;//矩阵组的初始化大小
//////////////////////////////////////////////Matrix类定义开始*************************************************
class Matrix:public SqList
{
int mmax;
int mleng
www.eeworm.com/read/101160/15849484
cpp matrix.cpp
//////////////////////////////////////////////////////////////////////
// Matrix.cpp
//
// 操作矩阵的类 CMatrix 的实现文件
//
//////////////////////////////////////////////////////////////////////
#inc
www.eeworm.com/read/101159/15849485
h matrix.h
class CMatrix{
private:
double **m_adValue;
int m_nRow;
int m_nCol;
public:
CMatrix();
CMatrix(int nRow,int nCol);
CMatrix(int nRow,int nCol,double dBuf);
CMatrix(const CMatrix &mat);
www.eeworm.com/read/101159/15849486
cpp matrix.cpp
#include "stdafx.h"
#include "afx.h"
#include "math.h"
#include "memory.h"
#include "iostream.h"
#include "matrix.h"
CMatrix::CMatrix()
{
m_nRow=16;
m_nCol=16;
m_adValue = new double*
www.eeworm.com/read/101097/15852565
mdb matrix.mdb
www.eeworm.com/read/101085/15852916
h matrix.h
// 4x4 Matrix class
// Handles matrices
#ifndef _MATRIX_H_
#define _MATRIX_H_
#include "math.h"
#include "vector.h"
class GcMatrix4;
class GcMatrix3
{
public:
GcMatrix3();
www.eeworm.com/read/101085/15852918
cpp matrix.cpp
#include "matrix.h"
#include "../global.h"
GcMatrix3::GcMatrix3()
{
SetIdentity();
}
float & GcMatrix3::operator[]( int i )
{
return array[i];
}
GcMatrix3 & GcMatrix3::operator=( c