代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.c
/*******************************************************************************
*
* This file is part of the General Hidden Markov Model Library,
* GHMM version 0.8_beta1, see http://ghmm
matrix.h
//matrix.h//////////////////////////////////////////////////////////////////
// 2005.1.13-16:02 By Superman
#include "math.h"
/*****************************************************************
matrix.h
#include // Defines the assert function.
class Matrix {
public:
// Default Constructor. Creates a 1 by 1 matrix; sets value to zero.
Matrix () {
nRow_ = 1; nCol_ = 1;
data_ = new d
matrix.java
package com.lc.v3.scm.datamining.math;
/*****************************************************************************
* @author leitw
*
* at Taian - Shandong province ,China
* corporation
matrix.c
typedef struct
{
int i;
int j;
eldmtype d;
}DataType;
typedef struct
{
int md;
int nd;
int td;
}TriType;
void Transition1(SeqList a, TriType da, SeqList *b, TriType *db)
{
in
matrix.h
#ifndef MATRIX_H
#define MATRIX_H
// 定义适合数学运算的实数matrix类,数据将存放在buffer类中
#include
#include
#include
// buffer.h包含实数缓存类buffer的定义
#include "buffer.h"
/
matrix.cpp
#include
#include
#include
#include
// 本程序实现matrix类
// 对matrix类的定义
#include "matrix.h"
matrix::matrix(buffer * b): // 缺省构造函数,产生0行0列空矩阵
rownum(0),co
matrix.inl
// Matrix.inl: implementation of the CMatrix class.
// inline functions
// 朱桂斌
// 2001年3月6日
//////////////////////////////////////////////////////////////////////
// 构造函数
inline CMatrix::C
matrix.h
// Matrix.h: interface for the CMatrix class.
// 原作者:Somnath Kundu EMail:somnath@kagi.com
//
// 改编:朱桂斌
// 2001年3月6日
//////////////////////////////////////////////////////////////////////
#if
matrix.h
////////////////////////////////
// Matrix TCL Lite v1.12
// Copyright (c) 1997-2001 Techsoft Pvt. Ltd. (See License.Txt file.)
//
// Matrix.h: Matrix C++ template class include file
// Web: htt