代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/220892/14785109
java matrix.java
public class Matrix{
private MyVector values;
private int h,w;
public Matrix(int h,int w){
if(!(h > 0 && w > 0))
throw new ArrayIndexOutOfBoundsException("h or w < " + 1);
values =
www.eeworm.com/read/120566/14798669
cs matrix.cs
using System;
namespace szfx
{
///
/// Summary description for matrix.
///
public class matrix
//矩阵类
{
public matrix()
{
//
// TODO: Add constructor
www.eeworm.com/read/120275/14808066
h matrix.h
// Matrix.h: interface for the CMatrix class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MATRIX_H__D58D0A47_68B4_11D6_AD90_00B0D0652E95__INCLUDED_)
www.eeworm.com/read/120275/14808086
cpp matrix.cpp
// Matrix.cpp: implementation of the CMatrix class.
//
//
//
// Coding and Memory analysis by Aris
// Please do not remove this header
//
///////////////////////////////////////////////////////
www.eeworm.com/read/119084/14839741
txt matrix.txt
/**************************************************************************\
MODULE: matrix
SUMMARY:
Macros are deined providing template-like classes for dynamic-sized,
recatngular matrices.
The
www.eeworm.com/read/119084/14839766
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 { \
public: \
\
www.eeworm.com/read/119079/14840164
txt matrix.txt
/**************************************************************************\
MODULE: matrix
SUMMARY:
Macros are deined providing template-like classes for dynamic-sized,
recatngular matric
www.eeworm.com/read/119079/14840190
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/219695/14869549
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/219575/14875622
java matrix.java
package matrix;
import gui.PepaConsole;
public class Matrix {
public int[] ija;
public double[] sa;
private int matDim;
private int size;
public Matrix(int size,int dim)
{
matDim=