代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/330307/12902792
cpp matrix.cpp
/*
Copyright (c) 2008 Eric Sauser,
LASA Lab, EPFL, CH-1015 Lausanne, Switzerland,
http://lasa.epfl.ch
*/
#include "Matrix.h"
int Matrix::bInverseOk = true;
www.eeworm.com/read/243948/12906049
h matrix.h
/////////////////////////////////////////////////////////////
// Flash Plugin and Player
// Copyright (C) 1998,1999 Olivier Debon
//
// This program is free software; you can redistribute it and/or
/
www.eeworm.com/read/243948/12906056
cc matrix.cc
/////////////////////////////////////////////////////////////
// Flash Plugin and Player
// Copyright (C) 1998,1999 Olivier Debon
//
// This program is free software; you can redistribute it and/or
/
www.eeworm.com/read/142819/12916408
ncb matrix.ncb
www.eeworm.com/read/142819/12916410
dsp matrix.dsp
# Microsoft Developer Studio Project File - Name="Matrix" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/142819/12916411
opt matrix.opt
www.eeworm.com/read/142819/12916414
dsw matrix.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/142819/12916418
plg matrix.plg
Build Log
--------------------Configuration: Matrix - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\Wilcel
www.eeworm.com/read/142819/12916426
cpp matrix.cpp
// Metrix.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#define METRIX_NUM 4
struct Metrix
{
int row;
int list;
};
Metrix A
www.eeworm.com/read/243744/12920165
cpp matrix.cpp
int TMatrix(float **A, float **B,int Row, int Col)
{
int i ,j;
for ( i = 0; i < Row; i ++)
{
for ( j = 0; j < Col; j ++)
{
B[j][i] = A[i][j];
}
}
return 1;
}