代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/383307/8956502
cs matrix.cs
/*
* 操作矩阵的类 Matrix
*
* 周长发编制
*/
using System;
namespace CSharpAlgorithm.Algorithm
{
/**
* 操作矩阵的类 Matrix
* @author 周长发
* @version 1.0
*/
public class Matrix
{
privat
www.eeworm.com/read/185949/8970960
h matrix.h
#ifndef NTL_matrix__H
#define NTL_matrix__H
#include
#include
// matrix templates
#define NTL_matrix_decl(T,vec_T,vec_vec_T,mat_T) \
class mat_T { \
pub
www.eeworm.com/read/185932/8972498
h matrix.h
#pragma once
template
class CMatrix
{
private:
T *m_pNum;
int m_nDim;
int m_nSize;
public:
CMatrix(int nDim = 0, int m_nSize = 0);
void Init();
CMatrix(const CM
www.eeworm.com/read/185932/8972517
cpp matrix.cpp
#include "Matrix.h"
template
CMatrix::CMatrix(int nDim, int nSize)
{
m_nDim = nDim;
m_nSize = nSize;
m_pNum = new T[nSize];
}
template
CMatrix
www.eeworm.com/read/427060/8980226
h matrix.h
void invmat(float a[],int n,float *d);
void CreateOpPocupine();
float chordLength(int n,float dp[][3]);
void invertxz(int n, float x1[], float z1[], float tempxz1[][3]);
void invertB2(int n,
www.eeworm.com/read/427060/8980348
cpp matrix.cpp
//**************************< description >******************************
// *
// Matrix vers-1.
www.eeworm.com/read/426643/9007556
cpp matrix.cpp
#include
using namespace std;
class matrix
{
public:
matrix ();
void getmatrix ();
void print ();
matrix operator+ (const matrix& othermatrix)const;
matrix operator
www.eeworm.com/read/283543/9008308
h matrix.h
//matrix.h//////////////////////////////////////////////////////////////////
// 2005.1.13-16:02 By Superman
#include "math.h"
/*****************************************************************
www.eeworm.com/read/382585/9018430
hex matrix.hex
:1000BD0001020304050607080901010102020203FA
:0200CD0003032B
:1000030078087C007D007BFF7A0079BD7E007F0944
:100013001201AB78117C007D007BFF7A0079C67EEC
:10002300007F091201ABE4F52F753000753101E44F
:1000330
www.eeworm.com/read/382585/9018437
c matrix.c
/*
/* matrix_m.c
/*
/* by:
/* Brian Grattan
/*
/**********************************************************************/
#pragma SMALL
#include
/******************************************