代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.java
/*
*@(#)Matrix.java 2.0 2005/05/05
*
*清华大学 精密仪器与机械学系
*范灿升 fancansheng@163.com
*/
package algorithm;
/**
*这个类提供一些基本的矩阵运算。
*随着程序功能的加强,这个类需要不断地扩展。
*@version 2.0, 2005/05/05
*@a
matrix.curry
class Matrix {
// these methods are intended to be overridden by subclasses
// if only we had pure virtual/abstract methods in our language...
void Init() {}
void Set(int x, int y, int valu
matrix.out
Program:
4 ClassDecl:
4 Identifier: Matrix
7 FnDecl:
(return type) Type: void
7 Identifier: Init
(body) StmtBlock:
8 FnDecl:
matrix.h
// File: Matrix.h
//
// Purpose: Matrix class template for manipulating term document matrix
// and query vector
//
// Original Author: Sartaj Shani, in Data Structures, Algorith
matrix.h
//Matrix.h (from QueryLSI)
#ifndef Matrix_
#define Matrix_
#include "xcept.h"
template
class Matrix {
friend ostream& operator
matrix.txt
/**************************************************************************\
MODULE: matrix
SUMMARY:
Macros are deined providing template-like classes for dynamic-sized,
recatngular matric
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