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

L

LEFT - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The alignment string aligning the cells of a column to the left.
LINEAR_INTERPOLATION - Static variable in class cern.jet.random.Empirical
 
LUDecomposition - class cern.colt.matrix.linalg.LUDecomposition.
For an m x n matrix A with m >= n, the LU decomposition is an m x n unit lower triangular matrix L, an n x n upper triangular matrix U, and a permutation vector piv of length m so that A(piv,:) = L*U; If m < n, then L is m x m and U is m x n.
LUDecomposition(DoubleMatrix2D) - Constructor for class cern.colt.matrix.linalg.LUDecomposition
Constructs and returns a new LU Decomposition object; The decomposed matrices can be retrieved via instance methods of the returned decomposition object.
LUDecompositionQuick - class cern.colt.matrix.linalg.LUDecompositionQuick.
A low level version of LUDecomposition, avoiding unnecessary memory allocation and copying.
LUDecompositionQuick() - Constructor for class cern.colt.matrix.linalg.LUDecompositionQuick
Constructs and returns a new LU Decomposition object with default tolerance 1.0E-9 for singularity detection.
LUDecompositionQuick(double) - Constructor for class cern.colt.matrix.linalg.LUDecompositionQuick
Constructs and returns a new LU Decomposition object which uses the given tolerance for singularity detection;
Logarithmic - class cern.jet.random.Logarithmic.
Logarithmic distribution.
Logarithmic(double, RandomEngine) - Constructor for class cern.jet.random.Logarithmic
Constructs a Logarithmic distribution.
LongArrayList - class cern.colt.list.LongArrayList.
Resizable list holding long elements; implemented with arrays.
LongArrayList() - Constructor for class cern.colt.list.LongArrayList
Constructs an empty list.
LongArrayList(long[]) - Constructor for class cern.colt.list.LongArrayList
Constructs a list containing the specified elements.
LongArrayList(int) - Constructor for class cern.colt.list.LongArrayList
Constructs an empty list with the specified initial capacity.
LongComparator - interface cern.colt.function.LongComparator.
A comparison function which imposes a total ordering on some collection of elements.
LongListAdapter - class cern.colt.list.adapter.LongListAdapter.
Adapter that permits an AbstractLongList to be viewed and treated as a JDK 1.2 AbstractList.
LongListAdapter(AbstractLongList) - Constructor for class cern.colt.list.adapter.LongListAdapter
Constructs a list backed by the specified content list.
LongObjectProcedure - interface cern.colt.function.LongObjectProcedure.
Interface that represents a procedure object: a procedure that takes two arguments and does not return a value.
LongProcedure - interface cern.colt.function.LongProcedure.
Interface that represents a procedure object: a procedure that takes a single argument and does not return a value.
lag1(DoubleArrayList, double) - Static method in class cern.jet.stat.Descriptive
Returns the lag-1 autocorrelation of a dataset; Note that this method has semantics different from autoCorrelation(..., 1);
largestPrime - Static variable in class cern.colt.map.PrimeFinder
The largest prime this class can generate; currently equal to Integer.MAX_VALUE.
lastIndexOf(boolean) - Method in class cern.colt.list.AbstractBooleanList
Returns the index of the last occurrence of the specified element.
lastIndexOf(byte) - Method in class cern.colt.list.AbstractByteList
Returns the index of the last occurrence of the specified element.
lastIndexOf(char) - Method in class cern.colt.list.AbstractCharList
Returns the index of the last occurrence of the specified element.
lastIndexOf(double) - Method in class cern.colt.list.AbstractDoubleList
Returns the index of the last occurrence of the specified element.
lastIndexOf(float) - Method in class cern.colt.list.AbstractFloatList
Returns the index of the last occurrence of the specified element.
lastIndexOf(int) - Method in class cern.colt.list.AbstractIntList
Returns the index of the last occurrence of the specified element.
lastIndexOf(long) - Method in class cern.colt.list.AbstractLongList
Returns the index of the last occurrence of the specified element.
lastIndexOf(short) - Method in class cern.colt.list.AbstractShortList
Returns the index of the last occurrence of the specified element.
lastIndexOf(Object, boolean) - Method in class cern.colt.list.ObjectArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(boolean, int, int) - Method in class cern.colt.list.AbstractBooleanList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(byte, int, int) - Method in class cern.colt.list.AbstractByteList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(char, int, int) - Method in class cern.colt.list.AbstractCharList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(double, int, int) - Method in class cern.colt.list.AbstractDoubleList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(float, int, int) - Method in class cern.colt.list.AbstractFloatList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(int, int, int) - Method in class cern.colt.list.AbstractIntList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(long, int, int) - Method in class cern.colt.list.AbstractLongList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(short, int, int) - Method in class cern.colt.list.AbstractShortList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(boolean, int, int) - Method in class cern.colt.list.BooleanArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(byte, int, int) - Method in class cern.colt.list.ByteArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(char, int, int) - Method in class cern.colt.list.CharArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(double, int, int) - Method in class cern.colt.list.DoubleArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(float, int, int) - Method in class cern.colt.list.FloatArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(int, int, int) - Method in class cern.colt.list.IntArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(long, int, int) - Method in class cern.colt.list.LongArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(Object, int, int, boolean) - Method in class cern.colt.list.ObjectArrayList
Returns the index of the last occurrence of the specified element.
lastIndexOfFromTo(short, int, int) - Method in class cern.colt.list.ShortArrayList
Returns the index of the last occurrence of the specified element.
leastSignificantBit(int) - Static method in class cern.colt.bitvector.QuickBitVector
Returns the index of the least significant bit in state "true".
less(DoubleMatrix2D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A[row,col] = A[row,col] < s ? 1 : 0.
less(DoubleMatrix2D, DoubleMatrix2D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A[row,col] = A[row,col] < B[row,col] ? 1 : 0.
less - Static variable in class cern.jet.math.Functions
Function that returns a < b ? 1 : 0.
less(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a < b ? 1 : 0.
lg - Static variable in class cern.jet.math.Functions
Function that returns Math.log(a) / Math.log(b).
lg(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns Math.log(a) / Math.log(b).
like() - Method in class cern.colt.matrix.DoubleMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same size.
like(int) - Method in class cern.colt.matrix.DoubleMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
like() - Method in class cern.colt.matrix.DoubleMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same number of rows and columns.
like(int, int) - Method in class cern.colt.matrix.DoubleMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like() - Method in class cern.colt.matrix.DoubleMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same number of slices, rows and columns.
like(int, int, int) - Method in class cern.colt.matrix.DoubleMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.
like() - Method in class cern.colt.matrix.ObjectMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same size.
like(int) - Method in class cern.colt.matrix.ObjectMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
like() - Method in class cern.colt.matrix.ObjectMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same number of rows and columns.
like(int, int) - Method in class cern.colt.matrix.ObjectMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like() - Method in class cern.colt.matrix.ObjectMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the same number of slices, rows and columns.
like(int, int, int) - Method in class cern.colt.matrix.ObjectMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.
like(int) - Method in class cern.colt.matrix.impl.DenseDoubleMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
like(int, int) - Method in class cern.colt.matrix.impl.DenseDoubleMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like(int, int, int) - Method in class cern.colt.matrix.impl.DenseDoubleMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.
like(int) - Method in class cern.colt.matrix.impl.DenseObjectMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
like(int, int) - Method in class cern.colt.matrix.impl.DenseObjectMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like(int, int, int) - Method in class cern.colt.matrix.impl.DenseObjectMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.
like(int, int) - Method in class cern.colt.matrix.impl.RCDoubleMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like(int) - Method in class cern.colt.matrix.impl.SparseDoubleMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
like(int, int) - Method in class cern.colt.matrix.impl.SparseDoubleMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like(int, int, int) - Method in class cern.colt.matrix.impl.SparseDoubleMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.
like(int) - Method in class cern.colt.matrix.impl.SparseObjectMatrix1D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.
like(int, int) - Method in class cern.colt.matrix.impl.SparseObjectMatrix2D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of rows and columns.
like(int, int, int) - Method in class cern.colt.matrix.impl.SparseObjectMatrix3D
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified number of slices, rows and columns.
like1D(int) - Method in class cern.colt.matrix.DoubleMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like1D(int) - Method in class cern.colt.matrix.ObjectMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like1D(int) - Method in class cern.colt.matrix.impl.DenseDoubleMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like1D(int) - Method in class cern.colt.matrix.impl.DenseObjectMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like1D(int) - Method in class cern.colt.matrix.impl.RCDoubleMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like1D(int) - Method in class cern.colt.matrix.impl.SparseDoubleMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like1D(int) - Method in class cern.colt.matrix.impl.SparseObjectMatrix2D
Construct and returns a new 1-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like2D(int, int) - Method in class cern.colt.matrix.DoubleMatrix1D
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like2D(int, int) - Method in class cern.colt.matrix.ObjectMatrix1D
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like2D(int, int) - Method in class cern.colt.matrix.impl.DenseDoubleMatrix1D
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like2D(int, int) - Method in class cern.colt.matrix.impl.DenseObjectMatrix1D
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like2D(int, int) - Method in class cern.colt.matrix.impl.SparseDoubleMatrix1D
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
like2D(int, int) - Method in class cern.colt.matrix.impl.SparseObjectMatrix1D
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.
log(double, double) - Static method in class cern.jet.math.Arithmetic
Returns logbasevalue.
log - Static variable in class cern.jet.math.Functions
Function that returns Math.log(a).
log10(double) - Static method in class cern.jet.math.Arithmetic
Returns log10value.
log2(double) - Static method in class cern.jet.math.Arithmetic
Returns log2value.
log2 - Static variable in class cern.jet.math.Functions
Function that returns Math.log(a) / Math.log(2).
logFactorial(int) - Static method in class cern.jet.math.Arithmetic
Returns log(k!).
logGamma(double) - Static method in class cern.jet.random.PoissonSlow
Returns the value ln(Gamma(xx) for xx > 0.
logGamma(double) - Static method in class cern.jet.stat.Gamma
Returns the natural logarithm of the gamma function; formerly named lgamma.
longFactorial(int) - Static method in class cern.jet.math.Arithmetic
Instantly returns the factorial k!.
lowerBandwidth(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Property
The lower bandwidth of a square matrix A is the maximum i-j for which A[i,j] is nonzero and i > j.
lowerEdge() - Method in interface hep.aida.IAxis
Lower axis edge.
lowerEdge() - Method in class hep.aida.ref.FixedAxis
 
lowerEdge() - Method in class hep.aida.ref.VariableAxis
 
lumen - Static variable in class cern.clhep.Units
 
lux - 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