代码搜索:LED Matrix

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

代码结果 10,000
www.eeworm.com/read/268610/11130002

class matrix.class

www.eeworm.com/read/268610/11130004

class matrix.class

www.eeworm.com/read/268610/11130029

class matrix.class

www.eeworm.com/read/268455/11139122

cpp matrix.cpp

#include using namespace std; #include "stdio.h" #include "conio.h" typedef int Status; typedef int ElemType;//类型定义 #define MAXSIZE 20 typedef struct{ int i,j; ElemType e; }T
www.eeworm.com/read/413371/11158376

lst matrix.lst

C51 COMPILER V8.02 MATRIX 05/15/2008 11:56:36 PAGE 1 C51 COMPILER V8.02, COMPILATION OF MODULE MATRIX OBJECT MODULE PLACED IN
www.eeworm.com/read/413371/11158396

c matrix.c

#include #include #define uchar unsigned char #define uint unsigned int //************************************************************************* //函数名: matrix_write /
www.eeworm.com/read/413371/11158400

obj matrix.obj

www.eeworm.com/read/413260/11160739

h matrix.h

#ifndef _MATRIX_H #define _MATRIX_H enum Fill_Way{crs,row,col,all}; class Matrix{ //仅为方阵!! private: int dimension; int cross; double **elements; public: Matrix(int d=1); //仅指定维数
www.eeworm.com/read/413260/11160744

cc matrix.cc

#include #include #include "matrix.h" using namespace std; Matrix::Matrix(int d):cross(0){ this->dimension=d; this->elements=new double*[d]; int i,j; for(i=0;i
www.eeworm.com/read/413260/11160748

o matrix.o