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

C

CANBERRA - Static variable in class cern.colt.matrix.doublealgo.Statistic
Canberra distance function; Sum( abs(x[i]-y[i]) / abs(x[i]+y[i]) ).
CENTER - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The alignment string aligning the cells of a column to its center.
COLUMNS - Static variable in class cern.jet.random.engine.RandomSeedTable
The number of columns of the matrix (currently COLUMNS = 2).
CharArrayList - class cern.colt.list.CharArrayList.
Resizable list holding char elements; implemented with arrays.
CharArrayList() - Constructor for class cern.colt.list.CharArrayList
Constructs an empty list.
CharArrayList(char[]) - Constructor for class cern.colt.list.CharArrayList
Constructs a list containing the specified elements.
CharArrayList(int) - Constructor for class cern.colt.list.CharArrayList
Constructs an empty list with the specified initial capacity.
CharComparator - interface cern.colt.function.CharComparator.
A comparison function which imposes a total ordering on some collection of elements.
CharProcedure - interface cern.colt.function.CharProcedure.
Interface that represents a procedure object: a procedure that takes a single argument and does not return a value.
ChiSquare - class cern.jet.random.ChiSquare.
ChiSquare distribution; See the math definition and animated definition.
ChiSquare(double, RandomEngine) - Constructor for class cern.jet.random.ChiSquare
Constructs a ChiSquare distribution.
CholeskyDecomposition - class cern.colt.matrix.linalg.CholeskyDecomposition.
For a symmetric, positive definite matrix A, the Cholesky decomposition is a lower triangular matrix L so that A = L*L'; If the matrix is not symmetric or positive definite, the constructor returns a partial decomposition and sets an internal flag that may be queried by the isSymmetricPositiveDefinite() method.
CholeskyDecomposition(DoubleMatrix2D) - Constructor for class cern.colt.matrix.linalg.CholeskyDecomposition
Constructs and returns a new Cholesky decomposition object for a symmetric and positive definite matrix; The decomposed matrices can be retrieved via instance methods of the returned decomposition object.
Constants - class cern.jet.math.Constants.
Defines some useful constants.
Converter - class hep.aida.ref.Converter.
Histogram conversions, for example to String and XML format; This class requires the Colt distribution, whereas the rest of the package is entirelly stand-alone.
Converter() - Constructor for class hep.aida.ref.Converter
Creates a new histogram converter.
c_light - Static variable in class cern.clhep.PhysicalConstants
 
c_squared - Static variable in class cern.clhep.PhysicalConstants
 
candela - Static variable in class cern.clhep.Units
 
cardinality() - Method in class cern.colt.bitvector.BitMatrix
Returns the number of bits currently in the true state.
cardinality() - Method in class cern.colt.bitvector.BitVector
Returns the number of bits currently in the true state.
cardinality() - Method in class cern.colt.matrix.DoubleMatrix1D
Returns the number of cells having non-zero values; ignores tolerance.
cardinality() - Method in class cern.colt.matrix.DoubleMatrix2D
Returns the number of cells having non-zero values; ignores tolerance.
cardinality() - Method in class cern.colt.matrix.DoubleMatrix3D
Returns the number of cells having non-zero values; ignores tolerance.
cardinality() - Method in class cern.colt.matrix.ObjectMatrix1D
Returns the number of cells having non-zero values; ignores tolerance.
cardinality() - Method in class cern.colt.matrix.ObjectMatrix2D
Returns the number of cells having non-zero values; ignores tolerance.
cardinality() - Method in class cern.colt.matrix.ObjectMatrix3D
Returns the number of cells having non-zero values; ignores tolerance.
cardinality() - Method in class cern.colt.matrix.impl.SparseDoubleMatrix1D
Returns the number of cells having non-zero values.
cardinality() - Method in class cern.colt.matrix.impl.SparseDoubleMatrix2D
Returns the number of cells having non-zero values.
cardinality() - Method in class cern.colt.matrix.impl.SparseDoubleMatrix3D
Returns the number of cells having non-zero values.
cardinality() - Method in class cern.colt.matrix.impl.SparseObjectMatrix1D
Returns the number of cells having non-zero values.
cardinality() - Method in class cern.colt.matrix.impl.SparseObjectMatrix2D
Returns the number of cells having non-zero values.
cardinality() - Method in class cern.colt.matrix.impl.SparseObjectMatrix3D
Returns the number of cells having non-zero values.
cdf(double) - Method in class cern.jet.random.Beta
Returns the cumulative distribution function.
cdf(int) - Method in class cern.jet.random.Binomial
Returns the cumulative distribution function.
cdf(double) - Method in class cern.jet.random.ChiSquare
Returns the cumulative distribution function.
cdf(int) - Method in class cern.jet.random.Empirical
Returns the cumulative distribution function.
cdf(int) - Method in class cern.jet.random.EmpiricalWalker
Returns the cumulative distribution function.
cdf(double) - Method in class cern.jet.random.Exponential
Returns the cumulative distribution function.
cdf(double) - Method in class cern.jet.random.Gamma
Returns the cumulative distribution function.
cdf(int) - Method in class cern.jet.random.NegativeBinomial
Returns the cumulative distribution function.
cdf(double) - Method in class cern.jet.random.Normal
Returns the cumulative distribution function.
cdf(int) - Method in class cern.jet.random.Poisson
Returns the cumulative distribution function.
cdf(double) - Method in class cern.jet.random.StudentT
Returns the cumulative distribution function.
cdf(double) - Method in class cern.jet.random.Uniform
Returns the cumulative distribution function (assuming a continous uniform distribution).
ceil(double) - Static method in class cern.jet.math.Arithmetic
Returns the smallest long >= value.
ceil - Static variable in class cern.jet.math.Functions
Function that returns Math.ceil(a).
center() - Method in class hep.aida.bin.AbstractBin
Returns center(0).
center(int) - Method in class hep.aida.bin.AbstractBin
Returns a custom definable "center" measure; override this method if necessary.
centimeter - Static variable in class cern.clhep.Units
 
centimeter2 - Static variable in class cern.clhep.Units
 
centimeter3 - Static variable in class cern.clhep.Units
 
cern.clhep - package cern.clhep
A Java port of CLHEP 1.4.0 (C++) - A Class Library for High Energy Physics; still quite incomplete - should probably find a way to take cern.clhep out of this distribution and merge cern.clhep with hep.lcd (SLAC).
cern.colt - package cern.colt
Core base classes; Operations on primitive arrays such as sorting, partitioning and permuting.
cern.colt.bitvector - package cern.colt.bitvector
Bit vectors and bit matrices.
cern.colt.buffer - package cern.colt.buffer
Fixed sized (non resizable) streaming buffers connected to a target objects to which data is automatically flushed upon buffer overflow.
cern.colt.function - package cern.colt.function
Core interfaces for functions, comparisons and procedures on objects and primitive data types.
cern.colt.list - package cern.colt.list
Resizable lists holding objects or primitive data types such as int, double, etc.
cern.colt.list.adapter - package cern.colt.list.adapter
List adapters that make Colt lists compatible with the JDK 1.2 Collections Framework.
cern.colt.map - package cern.colt.map
Automatically growing and shrinking maps holding objects or primitive data types such as int, double, etc.
cern.colt.matrix - package cern.colt.matrix
Matrix interfaces and factories; efficient and flexible dense and sparse 1, 2, 3 and d-dimensional matrices holding objects or primitive data types such as int, double, etc; Templated, fixed sized (not dynamically resizable); Also known as multi-dimensional arrays or Data Cubes.
cern.colt.matrix.bench - package cern.colt.matrix.bench
Matrix benchmarks.
cern.colt.matrix.doublealgo - package cern.colt.matrix.doublealgo
Double matrix algorithms such as print formatting, sorting, partitioning and statistics.
cern.colt.matrix.impl - package cern.colt.matrix.impl
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of cern.colt.matrix, without subsetting or supersetting.
cern.colt.matrix.linalg - package cern.colt.matrix.linalg
Linear Algebraic matrix computations operating on DoubleMatrix2D and DoubleMatrix1D.
cern.colt.matrix.objectalgo - package cern.colt.matrix.objectalgo
Object matrix algorithms such as print formatting, sorting, partitioning and statistics.
cern.jet.math - package cern.jet.math
Tools for basic and advanced mathematics: Arithmetics and Algebra, Polynomials and Chebyshev series, Bessel and Airy functions, Function Objects for generic function evaluation, etc.
cern.jet.random - package cern.jet.random
Large variety of probability distributions featuring high performance generation of random numbers, CDF's and PDF's.
cern.jet.random.engine - package cern.jet.random.engine
Engines generating strong uniformly distributed pseudo-random numbers; Needed by all JET probability distributions since they rely on uniform random numbers to generate random numbers from their own distribution.
cern.jet.random.sampling - package cern.jet.random.sampling
Samples (picks) random subsets of data sequences.
cern.jet.stat - package cern.jet.stat
Tools for basic and advanced statistics: Estimators, Gamma functions, Beta functions, Probabilities, Special integrals, etc.
cern.jet.stat.quantile - package cern.jet.stat.quantile
Scalable algorithms and data structures to compute approximate quantiles over very large data sequences.
chain(DoubleDoubleFunction, DoubleFunction, DoubleFunction) - Static method in class cern.jet.math.Functions
Constructs the function f( g(a), h(b) ).
chain(DoubleFunction, DoubleDoubleFunction) - Static method in class cern.jet.math.Functions
Constructs the function g( h(a,b) ).
chain(DoubleFunction, DoubleFunction) - Static method in class cern.jet.math.Functions
Constructs the function g( h(a) ).
chain(IntFunction, IntFunction) - Static method in class cern.jet.math.IntFunctions
Constructs the function g( h(a) ).
chain(IntFunction, IntIntFunction) - Static method in class cern.jet.math.IntFunctions
Constructs the function g( h(a,b) ).
chain(IntIntFunction, IntFunction, IntFunction) - Static method in class cern.jet.math.IntFunctions
Constructs the function f( g(a), h(b) ).
chbevl(double, double[], int) - Static method in class cern.jet.math.Arithmetic
Evaluates the series of Chebyshev polynomials Ti at argument x/2.
checkRectangular(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Property
Checks whether the given matrix A is rectangular.
checkShape(AbstractMatrix2D) - Method in class cern.colt.matrix.impl.AbstractMatrix2D
Sanity check for operations requiring two matrices with the same number of columns and rows.
checkShape(AbstractMatrix2D, AbstractMatrix2D) - Method in class cern.colt.matrix.impl.AbstractMatrix2D
Sanity check for operations requiring matrices with the same number of columns and rows.
checkShape(AbstractMatrix3D) - Method in class cern.colt.matrix.impl.AbstractMatrix3D
Sanity check for operations requiring two matrices with the same number of slices, rows and columns.
checkShape(AbstractMatrix3D, AbstractMatrix3D) - Method in class cern.colt.matrix.impl.AbstractMatrix3D
Sanity check for operations requiring matrices with the same number of slices, rows and columns.
checkSize(AbstractMatrix1D) - Method in class cern.colt.matrix.impl.AbstractMatrix1D
Sanity check for operations requiring two matrices with the same size.
checkSquare(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Property
Checks whether the given matrix A is square.
chiSquare(double, double) - Static method in class cern.jet.stat.Probability
Returns the area under the left hand tail (from 0 to x) of the Chi square probability density function with v degrees of freedom.
chiSquareComplemented(double, double) - Static method in class cern.jet.stat.Probability
Returns the area under the right hand tail (from x to infinity) of the Chi square probability density function with v degrees of freedom.
classic_electr_radius - Static variable in class cern.clhep.PhysicalConstants
 
clear() - Method in class cern.colt.bitvector.BitMatrix
Clears all bits of the receiver.
clear() - Method in class cern.colt.bitvector.BitVector
Clears all bits of the receiver.
clear(int) - Method in class cern.colt.bitvector.BitVector
Changes the bit with index bitIndex to the "clear" (false) state.
clear(long[], int) - Static method in class cern.colt.bitvector.QuickBitVector
Changes the bit with index bitIndex in the bitvector bits to the "clear" (false) state.
clear() - Method in class cern.colt.buffer.DoubleBuffer
Sets the receiver's size to zero.
clear() - Method in class cern.colt.buffer.DoubleBuffer2D
Sets the receiver's size to zero.
clear() - Method in class cern.colt.buffer.DoubleBuffer3D
Sets the receiver's size to zero.
clear() - Method in class cern.colt.buffer.IntBuffer
Sets the receiver's size to zero.
clear() - Method in class cern.colt.buffer.IntBuffer2D
Sets the receiver's size to zero.
clear() - Method in class cern.colt.buffer.IntBuffer3D
Sets the receiver's size to zero.
clear() - Method in class cern.colt.buffer.ObjectBuffer
Sets the receiver's size to zero.
clear() - Method in class cern.colt.list.AbstractCollection
Removes all elements from the receiver.
clear() - Method in class cern.colt.list.AbstractList
Removes all elements from the receiver.
clear() - Method in class cern.colt.map.AbstractMap
Removes all (key,value) associations from the receiver.
clear() - Method in class cern.colt.map.OpenDoubleIntHashMap
Removes all (key,value) associations from the receiver.
clear() - Method in class cern.colt.map.OpenIntDoubleHashMap
Removes all (key,value) associations from the receiver.
clear() - Method in class cern.colt.map.OpenIntIntHashMap
Removes all (key,value) associations from the receiver.
clear() - Method in class cern.colt.map.OpenIntObjectHashMap
Removes all (key,value) associations from the receiver.
clear() - Method in class cern.colt.map.OpenLongObjectHashMap
Removes all (key,value) associations from the receiver.
clear() - Method in interface cern.jet.stat.quantile.DoubleQuantileFinder
Removes all elements from the receiver.
clear() - Method in class hep.aida.bin.AbstractBin
Removes all elements from the receiver.
clear() - Method in class hep.aida.bin.DynamicBin1D
Removes all elements from the receiver.
clear() - Method in class hep.aida.bin.QuantileBin1D
Removes all elements from the receiver.
clear() - Method in class hep.aida.bin.StaticBin1D
Removes all elements from the receiver.
clone() - Method in class cern.colt.PersistentObject
Returns a copy of the receiver.
clone() - Method in class cern.colt.bitvector.BitMatrix
Cloning this BitMatrix produces a new BitMatrix that is equal to it.
clone() - Method in class cern.colt.bitvector.BitVector
Cloning this BitVector produces a new BitVector that is equal to it.
clone() - Method in class cern.colt.list.AbstractBooleanList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractByteList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractCharList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractDoubleList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractFloatList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractIntList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractLongList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.AbstractShortList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.BooleanArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.ByteArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.CharArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.DoubleArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.FloatArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.IntArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.LongArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.list.ObjectArrayList
Returns a copy of the receiver such that the copy and the receiver share the same elements, but do not share the same array to index them; So modifying an object in the copy modifies the object in the receiver and vice versa; However, structurally modifying the copy (for example changing its size, setting other objects at indexes, etc.) does not affect the receiver and vice versa.
clone() - Method in class cern.colt.list.ShortArrayList
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.map.OpenDoubleIntHashMap
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.map.OpenIntDoubleHashMap
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.map.OpenIntIntHashMap
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.map.OpenIntObjectHashMap
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.map.OpenLongObjectHashMap
Returns a deep copy of the receiver.
clone() - Method in class cern.colt.matrix.linalg.Algebra
Returns a copy of the receiver.
clone() - Method in class cern.jet.random.AbstractDistribution
Returns a deep copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.BreitWignerMeanSquare
Returns a deep copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.Empirical
Returns a deep copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.EmpiricalWalker
Returns a deep copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.NegativeBinomial
Returns a deep copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.Poisson
Returns a deep copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.engine.MersenneTwister
Returns a copy of the receiver; the copy will produce identical sequences.
clone() - Method in class cern.jet.random.sampling.RandomSampler
Returns a deep copy of the receiver.
clone() - Method in class cern.jet.random.sampling.RandomSamplingAssistant
Returns a deep copy of the receiver.
clone() - Method in class cern.jet.random.sampling.WeightedRandomSampler
Returns a deep copy of the receiver.
clone() - Method in interface cern.jet.stat.quantile.DoubleQuantileFinder
Returns a deep copy of the receiver.
clone() - Method in class hep.aida.bin.DynamicBin1D
Returns a deep copy of the receiver.
clone() - Method in class hep.aida.bin.MightyStaticBin1D
Returns a deep copy of the receiver.
clone() - Method in class hep.aida.bin.QuantileBin1D
Returns a deep copy of the receiver.
cm - Static variable in class cern.clhep.Units
 
cm2 - Static variable in class cern.clhep.Units
 
cm3 - Static variable in class cern.clhep.Units
 
columns() - Method in class cern.colt.bitvector.BitMatrix
Returns the number of columns of the receiver.
columns() - Method in class cern.colt.matrix.impl.AbstractMatrix2D
Returns the number of columns.
columns() - Method in class cern.colt.matrix.impl.AbstractMatrix3D
Returns the number of columns.
compare(byte, byte) - Method in interface cern.colt.function.ByteComparator
Compares its two arguments for order.
compare(char, char) - Method in interface cern.colt.function.CharComparator
Compares its two arguments for order.
compare(double, double) - Method in interface cern.colt.function.DoubleComparator
Compares its two arguments for order.
compare(float, float) - Method in interface cern.colt.function.FloatComparator
Compares its two arguments for order.
compare(int, int) - Method in interface cern.colt.function.IntComparator
Compares its two arguments for order.
compare(long, long) - Method in interface cern.colt.function.LongComparator
Compares its two arguments for order.
compare(short, short) - Method in interface cern.colt.function.ShortComparator
Compares its two arguments for order.
compare(DoubleMatrix1D, DoubleMatrix1D) - Method in interface cern.colt.matrix.doublealgo.DoubleMatrix1DComparator
Compares its two arguments for order.
compare(DoubleMatrix2D, DoubleMatrix2D) - Method in interface cern.colt.matrix.doublealgo.DoubleMatrix2DComparator
Compares its two arguments for order.
compare(ObjectMatrix1D, ObjectMatrix1D) - Method in interface cern.colt.matrix.objectalgo.ObjectMatrix1DComparator
Compares its two arguments for order.
compare(ObjectMatrix2D, ObjectMatrix2D) - Method in interface cern.colt.matrix.objectalgo.ObjectMatrix2DComparator
Compares its two arguments for order.
compare - Static variable in class cern.jet.math.Functions
Function that returns a < b ? -1 : a > b ? 1 : 0.
compare(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a < b ? -1 : a > b ? 1 : 0.
compare - Static variable in class cern.jet.math.IntFunctions
Function that returns a < b ? -1 : a > b ? 1 : 0.
compare(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns a < b ? -1 : a > b ? 1 : 0.
compareWith(AbstractBin1D) - Method in class hep.aida.bin.AbstractBin1D
Computes the deviations from the receiver's measures to another bin's measures.
compareWith(AbstractBin1D) - Method in class hep.aida.bin.MightyStaticBin1D
Computes the deviations from the receiver's measures to another bin's measures.
compareWith(AbstractBin1D) - Method in class hep.aida.bin.QuantileBin1D
Computes the deviations from the receiver's measures to another bin's measures.
compose(DoubleMatrix2D[][]) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a block matrix made from the given parts.
compose(ObjectMatrix2D[][]) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a block matrix made from the given parts.
composeDiagonal(DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a diagonal block matrix from the given parts (the direct sum of two matrices).
composeDiagonal(DoubleMatrix2D, DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a diagonal block matrix from the given parts.
composeDiagonal(ObjectMatrix2D, ObjectMatrix2D) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a diagonal block matrix from the given parts (the direct sum of two matrices).
composeDiagonal(ObjectMatrix2D, ObjectMatrix2D, ObjectMatrix2D) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a diagonal block matrix from the given parts.
cond(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Algebra
Returns the condition of matrix A, which is the ratio of largest to smallest singular value.
cond() - Method in class cern.colt.matrix.linalg.SingularValueDecomposition
Returns the two norm condition number, which is max(S) / min(S).
constant(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns the constant c.
constant(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns the constant c.
contains(boolean) - Method in class cern.colt.list.AbstractBooleanList
Returns true if the receiver contains the specified element.
contains(byte) - Method in class cern.colt.list.AbstractByteList
Returns true if the receiver contains the specified element.
contains(char) - Method in class cern.colt.list.AbstractCharList
Returns true if the receiver contains the specified element.
contains(double) - Method in class cern.colt.list.AbstractDoubleList
Returns true if the receiver contains the specified element.
contains(float) - Method in class cern.colt.list.AbstractFloatList
Returns true if the receiver contains the specified element.
contains(int) - Method in class cern.colt.list.AbstractIntList
Returns true if the receiver contains the specified element.
contains(long) - Method in class cern.colt.list.AbstractLongList
Returns true if the receiver contains the specified element.
contains(short) - Method in class cern.colt.list.AbstractShortList
Returns true if the receiver contains the specified element.
contains(Object, boolean) - Method in class cern.colt.list.ObjectArrayList
Returns true if the receiver contains the specified element.
containsKey(double) - Method in class cern.colt.map.AbstractDoubleIntMap
Returns true if the receiver contains the specified key.
containsKey(int) - Method in class cern.colt.map.AbstractIntDoubleMap
Returns true if the receiver contains the specified key.
containsKey(int) - Method in class cern.colt.map.AbstractIntIntMap
Returns true if the receiver contains the specified key.
containsKey(int) - Method in class cern.colt.map.AbstractIntObjectMap
Returns true if the receiver contains the specified key.
containsKey(long) - Method in class cern.colt.map.AbstractLongObjectMap
Returns true if the receiver contains the specified key.
containsKey(double) - Method in class cern.colt.map.OpenDoubleIntHashMap
Returns true if the receiver contains the specified key.
containsKey(int) - Method in class cern.colt.map.OpenIntDoubleHashMap
Returns true if the receiver contains the specified key.
containsKey(int) - Method in class cern.colt.map.OpenIntIntHashMap
Returns true if the receiver contains the specified key.
containsKey(int) - Method in class cern.colt.map.OpenIntObjectHashMap
Returns true if the receiver contains the specified key.
containsKey(long) - Method in class cern.colt.map.OpenLongObjectHashMap
Returns true if the receiver contains the specified key.
containsValue(int) - Method in class cern.colt.map.AbstractDoubleIntMap
Returns true if the receiver contains the specified value.
containsValue(double) - Method in class cern.colt.map.AbstractIntDoubleMap
Returns true if the receiver contains the specified value.
containsValue(int) - Method in class cern.colt.map.AbstractIntIntMap
Returns true if the receiver contains the specified value.
containsValue(Object) - Method in class cern.colt.map.AbstractIntObjectMap
Returns true if the receiver contains the specified value.
containsValue(Object) - Method in class cern.colt.map.AbstractLongObjectMap
Returns true if the receiver contains the specified value.
containsValue(int) - Method in class cern.colt.map.OpenDoubleIntHashMap
Returns true if the receiver contains the specified value.
containsValue(double) - Method in class cern.colt.map.OpenIntDoubleHashMap
Returns true if the receiver contains the specified value.
containsValue(int) - Method in class cern.colt.map.OpenIntIntHashMap
Returns true if the receiver contains the specified value.
containsValue(Object) - Method in class cern.colt.map.OpenIntObjectHashMap
Returns true if the receiver contains the specified value.
containsValue(Object) - Method in class cern.colt.map.OpenLongObjectHashMap
Returns true if the receiver contains the specified value.
coordToIndex(double) - Method in interface hep.aida.IAxis
Converts a coordinate on the axis to a bin number.
coordToIndex(double) - Method in class hep.aida.ref.FixedAxis
 
coordToIndex(double) - Method in class hep.aida.ref.VariableAxis
 
copy() - Method in class cern.colt.bitvector.BitMatrix
Returns a shallow clone of the receiver; calls clone() and casts the result.
copy() - Method in class cern.colt.bitvector.BitVector
Returns a deep copy of the receiver; calls clone() and casts the result.
copy() - Method in class cern.colt.list.BooleanArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.ByteArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.CharArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.DoubleArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.FloatArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.IntArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.LongArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.list.ObjectArrayList
Returns a copy of the receiver; call clone() and casts the result.
copy() - Method in class cern.colt.list.ShortArrayList
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.map.AbstractDoubleIntMap
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.map.AbstractIntDoubleMap
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.map.AbstractIntIntMap
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.map.AbstractIntObjectMap
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.map.AbstractLongObjectMap
Returns a deep copy of the receiver; uses clone() and casts the result.
copy() - Method in class cern.colt.matrix.DoubleMatrix1D
Constructs and returns a deep copy of the receiver.
copy() - Method in class cern.colt.matrix.DoubleMatrix2D
Constructs and returns a deep copy of the receiver.
copy() - Method in class cern.colt.matrix.DoubleMatrix3D
Constructs and returns a deep copy of the receiver.
copy() - Method in class cern.colt.matrix.ObjectMatrix1D
Constructs and returns a deep copy of the receiver.
copy() - Method in class cern.colt.matrix.ObjectMatrix2D
Constructs and returns a deep copy of the receiver.
copy() - Method in class cern.colt.matrix.ObjectMatrix3D
Constructs and returns a deep copy of the receiver.
corejava - package corejava
C-like number formatting that follows printf conventions.
correlation(DoubleMatrix2D) - Static method in class cern.colt.matrix.doublealgo.Statistic
Modifies the given covariance matrix to be a correlation matrix (in-place).
correlation(DoubleArrayList, double, DoubleArrayList, double) - Static method in class cern.jet.stat.Descriptive
Returns the correlation of two data sequences.
correlation(DynamicBin1D) - Method in class hep.aida.bin.DynamicBin1D
Returns the correlation of two bins, which is corr(x,y) = covariance(x,y) / (stdDev(x)*stdDev(y)) (Pearson's correlation coefficient).
cos - Static variable in class cern.jet.math.Functions
Function that returns Math.cos(a).
coulomb - Static variable in class cern.clhep.Units
 
countSortFromTo(int, int) - Method in class cern.colt.list.BooleanArrayList
Sorts the specified range of the receiver into ascending numerical order (false < true).
countSortFromTo(int, int) - Method in class cern.colt.list.ByteArrayList
Sorts the specified range of the receiver into ascending numerical order.
covariance(DoubleMatrix2D) - Static method in class cern.colt.matrix.doublealgo.Statistic
Constructs and returns the covariance matrix of the given matrix.
covariance(DoubleArrayList, DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Returns the covariance of two data sequences, which is cov(x,y) = (1/(size()-1)) * Sum((x[i]-mean(x)) * (y[i]-mean(y))).
covariance(DynamicBin1D) - Method in class hep.aida.bin.DynamicBin1D
Returns the covariance of two bins, which is cov(x,y) = (1/size()) * Sum((x[i]-mean(x)) * (y[i]-mean(y))).
create(String) - Method in class cern.colt.matrix.impl.FormerFactory
Constructs and returns a new format instance.
cube(DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix1D) - Static method in class cern.colt.matrix.doublealgo.Statistic
2-d OLAP cube operator; Fills all cells of the given vectors into the given histogram.
cube(DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix1D) - Static method in class cern.colt.matrix.doublealgo.Statistic
3-d OLAP cube operator; Fills all cells of the given vectors into the given histogram.
curie - Static variable in class cern.clhep.Units
 

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