代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/122555/14684020
cpp matrix.cpp
//---------------------------------------------------------------------------
// 16.jul.2002 13:24 GMT
// Matrix module implementation of TVector and TMatrix classes for
// transparent vector an
www.eeworm.com/read/222289/14697920
h matrix.h
// Matrix.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX_H__ACEC32EA_5254_4C23_A8BD_12F9220EF43A__INCLUDED_)
www.eeworm.com/read/222289/14697923
cpp matrix.cpp
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
/////////////////////////
www.eeworm.com/read/222279/14698690
h matrix.h
#ifndef __MATRIX_H
#define __MATRIX_H
void setidentity (float *, int, int);
void matrixmult (float *, float *, float, int, int);
void transpose (float *, int, int);
void ludcmp (float *, int
www.eeworm.com/read/222279/14698711
c matrix.c
#include
#include
#include
void setidentity (float *a, int n, int lrow) {
int i, j;
float *ai, *aij;
ai = a;
for (i=0;i
www.eeworm.com/read/122349/14699073
h matrix.h
// -*- c++ -*-
//
// Copyright 1997, 1998, 1999 University of Notre Dame.
// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee
//
// This file is part of the Matrix Template Library
//
// You sh
www.eeworm.com/read/222060/14708726
h matrix.h
#ifndef _MATRIX_H_
#define _MATRIX_H_
/**
* @file matrix.h
* Simple Math
*
* @author Marcelo Gattass
*
* @author Manuel E. L. Fernandez
*
* @date Jul06,2006
*
* Vector
www.eeworm.com/read/222060/14708818
c matrix.c
/**
* @file matrix.c
* Simple Math
*
* @author Marcelo Gattass
*
* @author Manuel E. L. Fernandez
*
* @date Jul06,2006
*/
#include
#include
#include
www.eeworm.com/read/222059/14708856
h matrix.h
#ifndef _MATRIX_H_
#define _MATRIX_H_
/******************
* Simple Math *
* *
* Marcelo Gattass *
* Dec04,2005 *
******************/
#if defined(__cplusplus)
e