代码搜索结果

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

matrix.hxx

// ******************** // *** CLASS MATRIX *** // ******************** #ifndef matrix_hxx class FloatMatrix ; class IntArray ; class Matrix /* This abstract class is the su

matrix.h

#ifndef MAXTRIX_H //如果被定义了,则跳到下一个#else或下一个#endif //避免文件中的内容被定义两次 #define MAXTRIX_H //两个矩阵相加(重载) void matrix_add(double *,double *,double *,int,int); void matrix_add(double *

matrix.cpp

#include "matrix.h" #include "math.h" #include "stdlib.h" #include "iostream.h" void matrix_add(double *matrixA,double *matrixB,double *matrixC,int m,int n) { //两个矩阵相加(m*n矩阵) //其中前两个矩阵为加数,第

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.txt

776 769 506 465 328 219 767 762 695 422 259 43 847 726 675 338 262 51 1006 808 516 343 324 244 883 876 722 430 257 117 906 784 625 163 105 88 855 624 524 416 218 152 891 862 638 369 178

matrix.h

//matrix.h////////////////////////////////////////////////////////////////// // 2005.1.13-16:02 By Superman #include "math.h" /*****************************************************************

matrix.h

#include #include "config.h" #ifdef GW_DEBUG #include #endif // #include "mex.h" class matrix { private: double* M_; int nb_row_, nb_col_; public: matrix(int n,

matrix.h

// Matrix.h: interface for the CMatrix class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_MATRIX_H__EEB147AD_4190_11D6_B625_00E04C39EA1A__INCLUDED_)

matrix.cpp

//////////////////////////////////////////////////////////////////////// // File Matrix.cpp //////////////////////////////////////////////////////////////////////// #include Matrix::M