代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/132141/14107392
out matrix.out
X(3,1) = 7
X is
3 4
5 6
7 8
Y is
3 4
5 6
7 8
X incremented by 2 is
5 6
7 8
9 10
Y + X is
8 10
12 14
16 18
-(Y + X) is
-8 -10
-12 -14
www.eeworm.com/read/233762/14137612
java matrix.java
package rmn;
import java.io.Serializable;
public interface Matrix extends Serializable {
public int size();
public int[] getDimensions();
public Matrix getCopy();
public Matrix newMatrix();
www.eeworm.com/read/131463/14144859
h matrix.h
class CMatrix{
private:
double **m_adValue;
int m_nRow;
int m_nCol;
public:
CMatrix();
CMatrix(int nRow,int nCol);
CMatrix(int nRow,int nCol,double dBuf);
CMatrix(const CMatrix &mat);
www.eeworm.com/read/131463/14144940
cpp matrix.cpp
#include "stdafx.h"
#include "afx.h"
#include "math.h"
#include "memory.h"
#include "iostream.h"
#include "matrix.h"
CMatrix::CMatrix()
{
m_nRow=16;
m_nCol=16;
m_adValue = new double*
www.eeworm.com/read/131257/14153946
dot matrix.dot
www.eeworm.com/read/131257/14153968
dot matrix.dot
www.eeworm.com/read/131090/14161304
h matrix.h
/********************************************************/
/* filename: matrix.h */
/* */
/**********************
www.eeworm.com/read/131090/14161412
cc matrix.cc
/********************************************************/
/* filename: matrix.cc */
/* */
/**********************
www.eeworm.com/read/232932/14176279
mdb matrix.mdb
www.eeworm.com/read/232714/14184457
cs matrix.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace NumericRcipes
{
public sealed class NRVec//向量类定义
{
private int n;
priva