代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/197844/7967154
vbp matrix.vbp
Type=OleDll
Class=Matrix; MATRIX.CLS
Object={F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0; COMDLG32.OCX
Object={BDC217C8-ED16-11CD-956C-0000C04E4C0A}#1.1#0; TABCTL32.OCX
Object={FAEEE763-117E-101B-
www.eeworm.com/read/197844/7967156
cls 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,
www.eeworm.com/read/297806/7995376
h 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
www.eeworm.com/read/297806/7995498
cpp 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
www.eeworm.com/read/297653/8005797
h 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
* .
www.eeworm.com/read/197100/8029920
h matrix.h
/* -*-C-*-
********************************************************************************
*
* File: matrix.h (Formerly matrix.h)
* Description: Ratings matrix code. (Used by associator)
www.eeworm.com/read/197100/8029947
cpp matrix.cpp
/* -*-C-*-
********************************************************************************
*
* File: matrix.c (Formerly matrix.c)
* Description: Ratings matrix code. (Used by associator)
www.eeworm.com/read/197100/8030850
test_matrix
www.eeworm.com/read/397398/8053194
h 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
www.eeworm.com/read/196853/8054473
h 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