代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI
matrix.cpp
#include
#include "Matrix.h"
#include
#include
#include
#include
using namespace std;
CMatrix::CMatrix(unsigned int irow ,unsigned int icol )
matrix.h
#include
#include
#ifndef __MatrixbyZsolt__
#define __MatrixbyZsolt__
///////////////////////////////////////////////////////////////////////////////////////
//Ini
matrix.gml
graph [
directed 1
node [
id 1
label "Program"
]
node [
id 2
label "Opt Declarations"
]
node [
id 3
label "Declarations"
]
node [
id 4
label "Declarations"
]
node [
id 5
matrix.out
::::::::::::::
test/matrix.pas
::::::::::::::
PROGRAM Matrix;
CONST
X = 3;
Y = 10;
Z = 5;
VAR
Matrix1 : ARRAY [1..X,1..Y] OF INTEGER;
Matrix2 : ARRAY [1..Y,1..Z] OF INTEGER;
Re
matrix.pas
PROGRAM Matrix;
CONST
X = 3;
Y = 10;
Z = 5;
VAR
Matrix1 : ARRAY [1..X,1..Y] OF INTEGER;
Matrix2 : ARRAY [1..Y,1..Z] OF INTEGER;
Result : ARRAY [1..X,1..Z] OF INTEGER;
matrix.pas
{**********************************************************************
* *
* Gerald Carter
matrix.h
#include
#include
#include
#include
#include "Vtr.h"
class Mtx
{
private:
int nrows;
int ncols;
double** ets;
public:
Mtx(int n,int m, dou