Colt 1.2.0
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

M

MANHATTAN - Static variable in class cern.colt.matrix.doublealgo.Statistic
Manhattan distance function; Sum( abs(x[i]-y[i]) ).
MAXIMUM - Static variable in class cern.colt.matrix.doublealgo.Statistic
Maximum distance function; Max( abs(x[i]-y[i]) ).
Matrix2DMatrix2DFunction - interface cern.colt.matrix.linalg.Matrix2DMatrix2DFunction.
Interface that represents a function object: a function that takes two arguments and returns a single value.
MeV - Static variable in class cern.clhep.Units
 
MersenneTwister - class cern.jet.random.engine.MersenneTwister.
MersenneTwister (MT19937) is one of the strongest uniform pseudo-random number generators known so far; at the same time it is quick.
MersenneTwister() - Constructor for class cern.jet.random.engine.MersenneTwister
Constructs and returns a random number generator with a default seed, which is a constant.
MersenneTwister(int) - Constructor for class cern.jet.random.engine.MersenneTwister
Constructs and returns a random number generator with the given seed.
MersenneTwister(Date) - Constructor for class cern.jet.random.engine.MersenneTwister
Constructs and returns a random number generator seeded with the given date.
MersenneTwister64 - class cern.jet.random.engine.MersenneTwister64.
Same as MersenneTwister except that method raw() returns 64 bit random numbers instead of 32 bit random numbers.
MersenneTwister64() - Constructor for class cern.jet.random.engine.MersenneTwister64
Constructs and returns a random number generator with a default seed, which is a constant.
MersenneTwister64(int) - Constructor for class cern.jet.random.engine.MersenneTwister64
Constructs and returns a random number generator with the given seed.
MersenneTwister64(Date) - Constructor for class cern.jet.random.engine.MersenneTwister64
Constructs and returns a random number generator seeded with the given date.
MightyStaticBin1D - class hep.aida.bin.MightyStaticBin1D.
Static and the same as its superclass, except that it can do more: Additionally computes moments of arbitrary integer order, harmonic mean, geometric mean, etc.
MightyStaticBin1D() - Constructor for class hep.aida.bin.MightyStaticBin1D
Constructs and returns an empty bin with limited functionality but good performance; equivalent to MightyStaticBin1D(false,false,4).
MightyStaticBin1D(boolean, boolean, int) - Constructor for class hep.aida.bin.MightyStaticBin1D
Constructs and returns an empty bin with the given capabilities.
MinMaxNumberList - class cern.colt.list.MinMaxNumberList.
Resizable compressed list holding numbers; based on the fact that a value in a given interval need not take more than log(max-min+1) bits; implemented with a cern.colt.bitvector.BitVector.
MinMaxNumberList(long, long, int) - Constructor for class cern.colt.list.MinMaxNumberList
Constructs an empty list with the specified initial capacity and the specified range of values allowed to be hold in this list.
Mult - class cern.jet.math.Mult.
Only for performance tuning of compute intensive linear algebraic computations.
m - Static variable in class cern.clhep.Units
 
m2 - Static variable in class cern.clhep.Units
 
m3 - Static variable in class cern.clhep.Units
 
main(String[]) - Static method in class cern.colt.Version
Prints asString on System.out.
main(String[]) - Static method in class cern.colt.map.Benchmark
Tests various methods of this class.
main(String[]) - Static method in class cern.colt.matrix.bench.BenchmarkMatrix
Runs the matrix benchmark operations defined in args or in the file specified by args0.
main(String[]) - Static method in class cern.colt.matrix.doublealgo.Statistic
Benchmarks covariance computation.
main(String[]) - Static method in class cern.jet.random.Benchmark
Benchmarks all subclasses
main(String[]) - Static method in class cern.jet.random.engine.Benchmark
Tests various methods of this class.
main(String[]) - Static method in class cern.jet.random.engine.RandomSeedGenerator
Prints the generated seeds for the given input parameters.
main(String[]) - Static method in class cern.jet.random.sampling.RandomSampler
Tests this class.
main(String[]) - Static method in class cern.jet.random.sampling.RandomSamplingAssistant
Tests random sampling.
main(String[]) - Static method in class cern.jet.stat.quantile.Quantile1Test
 
main(String[]) - Static method in class corejava.Format
a test stub for the format class
main(String[]) - Static method in class hep.aida.ref.Test
 
main(String[]) - Static method in class hep.aida.ref.Test2
 
main2(String[]) - Static method in class hep.aida.ref.Test2
 
make(double[]) - Method in class cern.colt.matrix.DoubleFactory1D
Constructs a matrix with the given cell values.
make(DoubleMatrix1D[]) - Method in class cern.colt.matrix.DoubleFactory1D
Constructs a matrix which is the concatenation of all given parts.
make(int) - Method in class cern.colt.matrix.DoubleFactory1D
Constructs a matrix with the given shape, each cell initialized with zero.
make(int, double) - Method in class cern.colt.matrix.DoubleFactory1D
Constructs a matrix with the given shape, each cell initialized with the given value.
make(AbstractDoubleList) - Method in class cern.colt.matrix.DoubleFactory1D
Constructs a matrix from the values of the given list.
make(double[][]) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a matrix with the given cell values.
make(double[], int) - Method in class cern.colt.matrix.DoubleFactory2D
Construct a matrix from a one-dimensional column-major packed array, ala Fortran.
make(int, int) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a matrix with the given shape, each cell initialized with zero.
make(int, int, double) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a matrix with the given shape, each cell initialized with the given value.
make(double[][][]) - Method in class cern.colt.matrix.DoubleFactory3D
Constructs a matrix with the given cell values.
make(int, int, int) - Method in class cern.colt.matrix.DoubleFactory3D
Constructs a matrix with the given shape, each cell initialized with zero.
make(int, int, int, double) - Method in class cern.colt.matrix.DoubleFactory3D
Constructs a matrix with the given shape, each cell initialized with the given value.
make(ObjectMatrix1D[]) - Method in class cern.colt.matrix.ObjectFactory1D
Constructs a matrix which is the concatenation of all given parts.
make(Object[]) - Method in class cern.colt.matrix.ObjectFactory1D
Constructs a matrix with the given cell values.
make(int) - Method in class cern.colt.matrix.ObjectFactory1D
Constructs a matrix with the given shape, each cell initialized with zero.
make(int, Object) - Method in class cern.colt.matrix.ObjectFactory1D
Constructs a matrix with the given shape, each cell initialized with the given value.
make(ObjectArrayList) - Method in class cern.colt.matrix.ObjectFactory1D
Constructs a matrix from the values of the given list.
make(Object[][]) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a matrix with the given cell values.
make(Object[], int) - Method in class cern.colt.matrix.ObjectFactory2D
Construct a matrix from a one-dimensional column-major packed array, ala Fortran.
make(int, int) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a matrix with the given shape, each cell initialized with zero.
make(int, int, Object) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a matrix with the given shape, each cell initialized with the given value.
make(Object[][][]) - Method in class cern.colt.matrix.ObjectFactory3D
Constructs a matrix with the given cell values.
make(int, int, int) - Method in class cern.colt.matrix.ObjectFactory3D
Constructs a matrix with the given shape, each cell initialized with zero.
make(int, int, int, Object) - Method in class cern.colt.matrix.ObjectFactory3D
Constructs a matrix with the given shape, each cell initialized with the given value.
makeBitVector(int, int) - Static method in class cern.colt.bitvector.QuickBitVector
Constructs a low level bitvector that holds size elements, with each element taking bitsPerElement bits.
makeDefault() - Static method in class cern.jet.random.engine.RandomEngine
Constructs and returns a new uniform random number engine seeded with the current time.
makeDefaultGenerator() - Static method in class cern.jet.random.AbstractDistribution
Constructs and returns a new uniform random number generation engine seeded with the current time.
max - Static variable in class cern.jet.math.Functions
Function that returns Math.max(a,b).
max(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns Math.max(a,b).
max - Static variable in class cern.jet.math.IntFunctions
Function that returns Math.max(a,b).
max(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns Math.max(a,b).
max(DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Returns the largest member of a data sequence.
max() - Method in class hep.aida.bin.AbstractBin1D
Returns the maximum.
max - Static variable in class hep.aida.bin.BinFunctions1D
Function that returns bin.max().
max() - Method in class hep.aida.bin.DynamicBin1D
Returns the maximum.
max() - Method in class hep.aida.bin.StaticBin1D
Returns the maximum.
mean(DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Returns the arithmetic mean of a data sequence; That is Sum( data[i] ) / data.size().
mean() - Method in interface hep.aida.IHistogram1D
Returns the mean of the whole histogram as calculated on filling-time.
mean() - Method in class hep.aida.bin.AbstractBin1D
Returns the arithmetic mean, which is Sum( x[i] ) / size().
mean - Static variable in class hep.aida.bin.BinFunctions1D
Function that returns bin.mean().
mean() - Method in class hep.aida.ref.Histogram1D
 
meanDeviation(DoubleArrayList, double) - Static method in class cern.jet.stat.Descriptive
Returns the mean deviation of a dataset.
meanX() - Method in interface hep.aida.IHistogram2D
Returns the mean of the histogram, as calculated on filling-time projected on the X axis.
meanX() - Method in interface hep.aida.IHistogram3D
Returns the mean of the histogram, as calculated on filling-time projected on the X axis.
meanX() - Method in class hep.aida.ref.Histogram2D
 
meanX() - Method in class hep.aida.ref.Histogram3D
 
meanY() - Method in interface hep.aida.IHistogram2D
Returns the mean of the histogram, as calculated on filling-time projected on the Y axis.
meanY() - Method in interface hep.aida.IHistogram3D
Returns the mean of the histogram, as calculated on filling-time projected on the Y axis.
meanY() - Method in class hep.aida.ref.Histogram2D
 
meanY() - Method in class hep.aida.ref.Histogram3D
 
meanZ() - Method in interface hep.aida.IHistogram3D
Returns the mean of the histogram, as calculated on filling-time projected on the Z axis.
meanZ() - Method in class hep.aida.ref.Histogram3D
 
median(DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Returns the median of a sorted data sequence.
median - Static variable in class hep.aida.bin.BinFunctions1D
Function that returns bin.median().
median() - Method in class hep.aida.bin.QuantileBin1D
Returns the median.
megaelectronvolt - Static variable in class cern.clhep.Units
 
megahertz - Static variable in class cern.clhep.Units
 
megavolt - Static variable in class cern.clhep.Units
 
memory() - Method in interface cern.jet.stat.quantile.DoubleQuantileFinder
Returns the number of elements currently needed to store all contained elements.
mergeSort(int, int, IntComparator, Swapper) - Static method in class cern.colt.GenericSorting
Sorts the specified range of elements according to the order induced by the specified comparator.
mergeSort(byte[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(byte[], int, int, ByteComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort(char[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(char[], int, int, CharComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort(double[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(double[], int, int, DoubleComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort(float[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(float[], int, int, FloatComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort(int[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(int[], int, int, IntComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort(long[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(long[], int, int, LongComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort(short[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
mergeSort(short[], int, int, ShortComparator) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements according to the order induced by the specified comparator.
mergeSort() - Method in class cern.colt.list.AbstractList
Sorts the receiver into ascending order.
mergeSort - Static variable in class cern.colt.matrix.doublealgo.Sorting
A prefabricated mergesort.
mergeSort - Static variable in class cern.colt.matrix.objectalgo.Sorting
A prefabricated mergesort.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractByteList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, ByteComparator) - Method in class cern.colt.list.AbstractByteList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractCharList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, CharComparator) - Method in class cern.colt.list.AbstractCharList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractDoubleList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, DoubleComparator) - Method in class cern.colt.list.AbstractDoubleList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractFloatList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, FloatComparator) - Method in class cern.colt.list.AbstractFloatList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractIntList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, IntComparator) - Method in class cern.colt.list.AbstractIntList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractList
Sorts the receiver into ascending order.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractLongList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, LongComparator) - Method in class cern.colt.list.AbstractLongList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.AbstractShortList
Sorts the specified range of the receiver into ascending order.
mergeSortFromTo(int, int, ShortComparator) - Method in class cern.colt.list.AbstractShortList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortFromTo(int, int) - Method in class cern.colt.list.BooleanArrayList
Sorts the specified range of the receiver into ascending order (false < true).
mergeSortFromTo(int, int) - Method in class cern.colt.list.ObjectArrayList
Sorts the specified range of the receiver into ascending order, according to the natural ordering of its elements.
mergeSortFromTo(int, int, Comparator) - Method in class cern.colt.list.ObjectArrayList
Sorts the receiver according to the order induced by the specified comparator.
mergeSortInPlace(int[], int, int) - Static method in class cern.colt.Sorting
Sorts the specified range of the specified array of elements.
meter - Static variable in class cern.clhep.Units
 
meter2 - Static variable in class cern.clhep.Units
 
meter3 - Static variable in class cern.clhep.Units
 
mg - Static variable in class cern.clhep.Units
 
microampere - Static variable in class cern.clhep.Units
 
microbarn - Static variable in class cern.clhep.Units
 
microfarad - Static variable in class cern.clhep.Units
 
micrometer - Static variable in class cern.clhep.Units
 
microsecond - Static variable in class cern.clhep.Units
 
milliampere - Static variable in class cern.clhep.Units
 
millibarn - Static variable in class cern.clhep.Units
 
millifarad - Static variable in class cern.clhep.Units
 
milligram - Static variable in class cern.clhep.Units
 
millimeter - Static variable in class cern.clhep.Units
 
millimeter2 - Static variable in class cern.clhep.Units
 
millimeter3 - Static variable in class cern.clhep.Units
 
milliradian - Static variable in class cern.clhep.Units
 
millis() - Method in class cern.colt.Timer
Returns the elapsed time in milli seconds; does not stop the timer, if started.
millisecond - Static variable in class cern.clhep.Units
 
min - Static variable in class cern.jet.math.Functions
Function that returns Math.min(a,b).
min(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns Math.min(a,b).
min - Static variable in class cern.jet.math.IntFunctions
Function that returns Math.min(a,b).
min(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns Math.min(a,b).
min(DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Returns the smallest member of a data sequence.
min() - Method in class hep.aida.bin.AbstractBin1D
Returns the minimum.
min - Static variable in class hep.aida.bin.BinFunctions1D
Function that returns bin.min().
min() - Method in class hep.aida.bin.DynamicBin1D
Returns the minimum.
min() - Method in class hep.aida.bin.StaticBin1D
Returns the minimum.
minMaxBins() - Method in interface hep.aida.IHistogram1D
Indexes of the in-range bins containing the smallest and largest binHeight(), respectively.
minMaxBins() - Method in interface hep.aida.IHistogram2D
Indexes of the in-range bins containing the smallest and largest binHeight(), respectively.
minMaxBins() - Method in interface hep.aida.IHistogram3D
Indexes of the in-range bins containing the smallest and largest binHeight(), respectively.
minus(Timer) - Method in class cern.colt.Timer
T = this - other; Constructs and returns a new timer which is the difference of the receiver and the other timer.
minus(DoubleMatrix1D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A - s <=> A[i] = A[i] - s.
minus(DoubleMatrix1D, DoubleMatrix1D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A - B <=> A[i] = A[i] - B[i].
minus(DoubleMatrix2D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A - s <=> A[row,col] = A[row,col] - s.
minus(DoubleMatrix2D, DoubleMatrix2D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A - B <=> A[row,col] = A[row,col] - B[row,col].
minus - Static variable in class cern.jet.math.Functions
Function that returns a - b.
minus(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a - b.
minus - Static variable in class cern.jet.math.IntFunctions
Function that returns a - b.
minus(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns a - b.
minusDiv(double) - Static method in class cern.jet.math.PlusMult
a - b/constant.
minusMult(DoubleMatrix1D, DoubleMatrix1D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A - B*s <=> A[i] = A[i] - B[i]*s.
minusMult(DoubleMatrix2D, DoubleMatrix2D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A - B*s <=> A[row,col] = A[row,col] - B[row,col]*s.
minusMult(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a - b*constant.
minusMult(double) - Static method in class cern.jet.math.PlusMult
a - b*constant.
minutes() - Method in class cern.colt.Timer
Returns the elapsed time in minutes; does not stop the timer, if started.
mm - Static variable in class cern.clhep.Units
 
mm2 - Static variable in class cern.clhep.Units
 
mm3 - Static variable in class cern.clhep.Units
 
mod - Static variable in class cern.jet.math.Functions
Function that returns a % b.
mod(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a % b.
mod - Static variable in class cern.jet.math.IntFunctions
Function that returns a % b.
mod(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns a % b.
mole - Static variable in class cern.clhep.Units
 
moment(int, double, int, double[]) - Static method in class cern.jet.stat.Descriptive
Returns the moment of k-th order with constant c of a data sequence, which is Sum( (data[i]-c)k ) / data.size().
moment(DoubleArrayList, int, double) - Static method in class cern.jet.stat.Descriptive
Returns the moment of k-th order with constant c of a data sequence, which is Sum( (data[i]-c)k ) / data.size().
moment(int, double) - Method in class hep.aida.bin.DynamicBin1D
Returns the moment of k-th order with value c, which is Sum( (x[i]-c)k ) / size().
moment(int, double) - Method in class hep.aida.bin.MightyStaticBin1D
Returns the moment of k-th order with value c, which is Sum( (x[i]-c)k ) / size().
mostSignificantBit(int) - Static method in class cern.colt.bitvector.QuickBitVector
Returns the index of the most significant bit in state "true".
mrad - Static variable in class cern.clhep.Units
 
ms - Static variable in class cern.clhep.Units
 
mu0 - Static variable in class cern.clhep.PhysicalConstants
 
mult(DoubleMatrix1D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A * s <=> A[i] = A[i] * s.
mult(DoubleMatrix1D, DoubleMatrix1D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A * B <=> A[i] = A[i] * B[i].
mult(DoubleMatrix2D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A * s <=> A[row,col] = A[row,col] * s.
mult(DoubleMatrix2D, DoubleMatrix2D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A * B <=> A[row,col] = A[row,col] * B[row,col].
mult(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.Algebra
Inner product of two vectors; Sum(x[i] * y[i]).
mult(DoubleMatrix2D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.Algebra
Linear algebraic matrix-vector multiplication; z = A * y.
mult(DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Algebra
Linear algebraic matrix-matrix multiplication; C = A x B.
mult - Static variable in class cern.jet.math.Functions
Function that returns a * b.
mult(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a * b.
mult - Static variable in class cern.jet.math.IntFunctions
Function that returns a * b.
mult(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns a * b.
mult(double) - Static method in class cern.jet.math.Mult
a * constant.
multOuter(DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Algebra
Outer product of two vectors; Sets A[i,j] = x[i] * y[j].
multiplicator - Variable in class cern.jet.math.Mult
Public read/write access to avoid frequent object construction.
multiplicator - Variable in class cern.jet.math.PlusMult
Public read/write access to avoid frequent object construction.

Colt 1.2.0
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
Jump to the Colt Homepage