代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/329960/12923935
h matrix.h
/*******************************************************************************
*
* This file is part of the General Hidden Markov Model Library,
* GHMM version 0.8_beta1, see http://ghmm
www.eeworm.com/read/329960/12924168
c matrix.c
/*******************************************************************************
*
* This file is part of the General Hidden Markov Model Library,
* GHMM version 0.8_beta1, see http://ghmm
www.eeworm.com/read/243451/12940400
h matrix.h
//matrix.h//////////////////////////////////////////////////////////////////
// 2005.1.13-16:02 By Superman
#include "math.h"
/*****************************************************************
www.eeworm.com/read/142433/12945899
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
www.eeworm.com/read/142382/12948863
java matrix.java
package com.lc.v3.scm.datamining.math;
/*****************************************************************************
* @author leitw
*
* at Taian - Shandong province ,China
* corporation
www.eeworm.com/read/243219/12954573
c 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
www.eeworm.com/read/142108/12962166
h matrix.h
#ifndef MATRIX_H
#define MATRIX_H
// 定义适合数学运算的实数matrix类,数据将存放在buffer类中
#include
#include
#include
// buffer.h包含实数缓存类buffer的定义
#include "buffer.h"
/
www.eeworm.com/read/142108/12962190
cpp matrix.cpp
#include
#include
#include
#include
// 本程序实现matrix类
// 对matrix类的定义
#include "matrix.h"
matrix::matrix(buffer * b): // 缺省构造函数,产生0行0列空矩阵
rownum(0),co
www.eeworm.com/read/243047/12966457
inl matrix.inl
// Matrix.inl: implementation of the CMatrix class.
// inline functions
// 朱桂斌
// 2001年3月6日
//////////////////////////////////////////////////////////////////////
// 构造函数
inline CMatrix::C
www.eeworm.com/read/243047/12966464
h matrix.h
// Matrix.h: interface for the CMatrix class.
// 原作者:Somnath Kundu EMail:somnath@kagi.com
//
// 改编:朱桂斌
// 2001年3月6日
//////////////////////////////////////////////////////////////////////
#if