代码搜索:Matrix
找到约 10,000 项符合「Matrix」的源代码
代码结果 10,000
www.eeworm.com/read/449138/1680407
c matrix.c
/*
Ming, an SWF output library
Copyright (C) 2002 Opaque Industries - http://www.opaque.net/
This library is free software; you can redistribute it and/or
modify it under the terms o
www.eeworm.com/read/446555/1712127
h matrix.h
#ifndef _MATRIX_H_
#define _MATRIX_H_
//start
class Matrix {
public:
Matrix(int c, int r);
Matrix(const Matrix& m);
~Matrix();
double& operator()(int i, int j);
double operator()(i
www.eeworm.com/read/446555/1712128
cpp matrix.cpp
#include "matrix.h"
Matrix:: Matrix(int c, int r):m_ColSize(c), m_RowSize(r) {
m_NumArray = new double*[c];
for (int i = 0; i < c; ++i)
m_NumArray[i] = new double[r];
}
www.eeworm.com/read/446555/1712129
pro matrix.pro
######################################################################
# Automatically generated by qmake (2.00a) Tue Jun 28 18:51:12 2005
#############################################################
www.eeworm.com/read/440061/1802994
js matrix.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
www.eeworm.com/read/440061/1803380
js matrix.js
/*
Copyright (c) 2004-2006, The Dojo Foundation
All Rights Reserved.
Licensed under the Academic Free License version 2.1 or above OR the
modified BSD license. For more information on Dojo licens
www.eeworm.com/read/437952/1828431
java matrix.java
//$
package org.hibernate.test.annotations.collectionelement;
import java.util.Map;
import java.util.SortedMap;
import java.util.TreeMap;
import javax.persistence.Entity;
import javax.persistence.Ge
www.eeworm.com/read/436207/1850212
java matrix.java
package weka.classifiers.functions.pace;
import java.text.NumberFormat;
import java.text.DecimalFormat;
import java.text.DecimalFormatSymbols;
import java.util.Locale;
import java.text.FieldPosition;
www.eeworm.com/read/436207/1850849
java matrix.java
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either vers