代码搜索结果
找到约 10,000 项符合
LED Matrix 的代码
matrix.cls
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "Matrix"
Attribute VB_Creatable = True
Attribute VB_Exposed = True
Public Function Matrix(lb As Variant, Cols As Variant,
matrix.h
#ifndef _MATRIX_YZCH_
#define _MATRIX_YZCH_
class CMatrix
{
public:
CMatrix();
~CMatrix();
BOOL Scale(double * src, double * dest, double value, int height, int width);
BOOL SVD(double
matrix.cpp
#include "stdafx.h"
#include
#include "Matrix.h"
CMatrix::CMatrix()
{
}
CMatrix::~CMatrix()
{
}
BOOL CMatrix::Add(double *src1, double *src2, double *dest, int height, in
matrix.h
/*
* @(#)matrix.h generated by: makeheader 4.21 Mon Aug 16 03:03:07 2004
*
* built from: ../../src/include/copyright.h
* ../../src/include/pragma_interface.h
* mxassert.h
* .
matrix.h
/* -*-C-*-
********************************************************************************
*
* File: matrix.h (Formerly matrix.h)
* Description: Ratings matrix code. (Used by associator)
matrix.cpp
/* -*-C-*-
********************************************************************************
*
* File: matrix.c (Formerly matrix.c)
* Description: Ratings matrix code. (Used by associator)
matrix.h
#ifndef MATRIX_H
#define MATRIX_H
#include
using namespace std;
class Matrix
{
public:
Matrix(int m,int n)
{
int i=0,j=0;
mat=new double*[m];
for (i=0;i
matrix.h
//matrix.h
#ifndef MATRIX_H
#define MATRIX_H
class vector;
class matrix;
typedef double(*pfun)(double t);
typedef void (*fun_group)(double t,vector& y);
typedef double(*pfun2)(double t,do
matrix.h
//matrix.h
#ifndef MATRIX_H
#define MATRIX_H
class vector;
class matrix;
typedef double(*pfun)(double t);
typedef void (*fun_group)(double t,vector& y);
typedef double(*pfun2)(double t,do