代码搜索结果

找到约 10,000 项符合 LED Matrix 的代码

matrix.h

////////////////////////////////////////////////////////////////////// // Matrix.h // // 操作矩阵的类 CMatrix 的声明接口 // // 周长发编制, 2002/8 ////////////////////////////////////////////////////////////////

matrix.cpp

////////////////////////////////////////////////////////////////////// // Matrix.cpp // // 操作矩阵的类 CMatrix 的实现文件 // // 周长发编制, 2002/8 //////////////////////////////////////////////////////////////

matrix.pas

unit Matrix; interface // Transpose a Variant matrix. // Transpose1 uses a direct, readable, maintainable approach. // Transpose2 accesses the Variant array data directly, which is // much fa

matrix.h

//////////////////////////////// // Matrix TCL Lite v1.13 // Copyright (c) 1997-2002 Techsoft Pvt. Ltd. (See License.Txt file.) // // Matrix.h: Matrix C++ template class include file // Web: htt

matrix.h

/*** ** libface - Library of face recognition and supporting algorithms Copyright (c) 2003 Stefan Farthofer This file is part of libface, which is free software; you can

matrix.c

/*** ** libface - Library of face recognition and supporting algorithms Copyright (c) 2003 Stefan Farthofer This file is part of libface, which is free software; you can

matrix.h

#ifndef _MATRIX_H #define _MATRIX_H #include "defines.h" namespace annie { /** A class for 2-dimensional matrices. * This probably isn't the most efficient way to do matrix operations,

matrix.cpp

#include "../include/Matrix.h" #include "../include/Exception.h" #include using namespace std; namespace annie { Matrix::Matrix(int m,int n) { _m = m; _n = n; _M = NULL;

matrix.hpp

//Header: Matrix.hpp //Version: 1.0 //Language: Borland C++ 3.1 //Environ: Any //Date: 10/1995~3/1996 //Purpose: Provide a base class for matrix #ifndef __MATRIX__HPP #define __MATRIX__HPP