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

D

DECIMAL - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The alignment string aligning the cells of a column to the decimal point.
DEFAULT - Static variable in class cern.colt.matrix.linalg.Algebra
A default Algebra object; has Property.DEFAULT attached for tolerance.
DEFAULT - Static variable in class cern.colt.matrix.linalg.Property
The default Property object; currently has tolerance()==1.0E-9.
DEFAULT_COLUMN_SEPARATOR - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The default string separating any two columns from another; currently " ".
DEFAULT_MIN_COLUMN_WIDTH - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The default minimum number of characters a column may have; currently 1.
DEFAULT_ROW_SEPARATOR - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The default string separating any two rows from another; currently "\n".
DEFAULT_SEED - Static variable in class cern.jet.random.engine.DRand
 
DEFAULT_SEED - Static variable in class cern.jet.random.engine.MersenneTwister
 
DEFAULT_SLICE_SEPARATOR - Static variable in class cern.colt.matrix.impl.AbstractFormatter
The default string separating any two slices from another; currently "\n\n".
DRand - class cern.jet.random.engine.DRand.
Quick medium quality uniform pseudo-random number generator.
DRand() - Constructor for class cern.jet.random.engine.DRand
Constructs and returns a random number generator with a default seed, which is a constant.
DRand(int) - Constructor for class cern.jet.random.engine.DRand
Constructs and returns a random number generator with the given seed.
DRand(Date) - Constructor for class cern.jet.random.engine.DRand
Constructs and returns a random number generator seeded with the given date.
DenseDoubleMatrix1D - class cern.colt.matrix.impl.DenseDoubleMatrix1D.
Dense 1-d matrix (aka vector) holding double elements.
DenseDoubleMatrix1D(double[]) - Constructor for class cern.colt.matrix.impl.DenseDoubleMatrix1D
Constructs a matrix with a copy of the given values.
DenseDoubleMatrix1D(int) - Constructor for class cern.colt.matrix.impl.DenseDoubleMatrix1D
Constructs a matrix with a given number of cells.
DenseDoubleMatrix2D - class cern.colt.matrix.impl.DenseDoubleMatrix2D.
Dense 2-d matrix holding double elements.
DenseDoubleMatrix2D(double[][]) - Constructor for class cern.colt.matrix.impl.DenseDoubleMatrix2D
Constructs a matrix with a copy of the given values.
DenseDoubleMatrix2D(int, int) - Constructor for class cern.colt.matrix.impl.DenseDoubleMatrix2D
Constructs a matrix with a given number of rows and columns.
DenseDoubleMatrix3D - class cern.colt.matrix.impl.DenseDoubleMatrix3D.
Dense 3-d matrix holding double elements.
DenseDoubleMatrix3D(double[][][]) - Constructor for class cern.colt.matrix.impl.DenseDoubleMatrix3D
Constructs a matrix with a copy of the given values.
DenseDoubleMatrix3D(int, int, int) - Constructor for class cern.colt.matrix.impl.DenseDoubleMatrix3D
Constructs a matrix with a given number of slices, rows and columns.
DenseObjectMatrix1D - class cern.colt.matrix.impl.DenseObjectMatrix1D.
Dense 1-d matrix (aka vector) holding Object elements.
DenseObjectMatrix1D(Object[]) - Constructor for class cern.colt.matrix.impl.DenseObjectMatrix1D
Constructs a matrix with a copy of the given values.
DenseObjectMatrix1D(int) - Constructor for class cern.colt.matrix.impl.DenseObjectMatrix1D
Constructs a matrix with a given number of cells.
DenseObjectMatrix2D - class cern.colt.matrix.impl.DenseObjectMatrix2D.
Dense 2-d matrix holding Object elements.
DenseObjectMatrix2D(Object[][]) - Constructor for class cern.colt.matrix.impl.DenseObjectMatrix2D
Constructs a matrix with a copy of the given values.
DenseObjectMatrix2D(int, int) - Constructor for class cern.colt.matrix.impl.DenseObjectMatrix2D
Constructs a matrix with a given number of rows and columns.
DenseObjectMatrix3D - class cern.colt.matrix.impl.DenseObjectMatrix3D.
Dense 3-d matrix holding Object elements.
DenseObjectMatrix3D(Object[][][]) - Constructor for class cern.colt.matrix.impl.DenseObjectMatrix3D
Constructs a matrix with a copy of the given values.
DenseObjectMatrix3D(int, int, int) - Constructor for class cern.colt.matrix.impl.DenseObjectMatrix3D
Constructs a matrix with a given number of slices, rows and columns.
Descriptive - class cern.jet.stat.Descriptive.
Basic descriptive statistics.
DistinctNumberList - class cern.colt.list.DistinctNumberList.
Resizable compressed list holding numbers; based on the fact that a number from a large list with few distinct values need not take more than log(distinctValues) bits; implemented with a MinMaxNumberList.
DistinctNumberList(long[], int) - Constructor for class cern.colt.list.DistinctNumberList
Constructs an empty list with the specified initial capacity and the specified distinct values allowed to be hold in this list.
Distributions - class cern.jet.random.Distributions.
Contains methods for conveniently generating pseudo-random numbers from special distributions such as the Burr, Cauchy, Erlang, Geometric, Lambda, Laplace, Logistic, Weibull, etc.
Double27Function - interface cern.colt.function.Double27Function.
Interface that represents a function object: a function that takes 27 arguments and returns a single value.
Double5Function - interface cern.colt.function.Double5Function.
Interface that represents a function object: a function that takes 5 arguments and returns a single value.
Double9Function - interface cern.colt.function.Double9Function.
Interface that represents a function object: a function that takes 9 arguments and returns a single value.
DoubleArrayList - class cern.colt.list.DoubleArrayList.
Resizable list holding double elements; implemented with arrays.
DoubleArrayList() - Constructor for class cern.colt.list.DoubleArrayList
Constructs an empty list.
DoubleArrayList(double[]) - Constructor for class cern.colt.list.DoubleArrayList
Constructs a list containing the specified elements.
DoubleArrayList(int) - Constructor for class cern.colt.list.DoubleArrayList
Constructs an empty list with the specified initial capacity.
DoubleBuffer - class cern.colt.buffer.DoubleBuffer.
Fixed sized (non resizable) streaming buffer connected to a target DoubleBufferConsumer to which data is automatically flushed upon buffer overflow.
DoubleBuffer(DoubleBufferConsumer, int) - Constructor for class cern.colt.buffer.DoubleBuffer
Constructs and returns a new buffer with the given target.
DoubleBuffer2D - class cern.colt.buffer.DoubleBuffer2D.
Fixed sized (non resizable) streaming buffer connected to a target DoubleBuffer2DConsumer to which data is automatically flushed upon buffer overflow.
DoubleBuffer2D(DoubleBuffer2DConsumer, int) - Constructor for class cern.colt.buffer.DoubleBuffer2D
Constructs and returns a new buffer with the given target.
DoubleBuffer2DConsumer - interface cern.colt.buffer.DoubleBuffer2DConsumer.
Target of a streaming DoubleBuffer2D into which data is flushed upon buffer overflow.
DoubleBuffer3D - class cern.colt.buffer.DoubleBuffer3D.
Fixed sized (non resizable) streaming buffer connected to a target DoubleBuffer3DConsumer to which data is automatically flushed upon buffer overflow.
DoubleBuffer3D(DoubleBuffer3DConsumer, int) - Constructor for class cern.colt.buffer.DoubleBuffer3D
Constructs and returns a new buffer with the given target.
DoubleBuffer3DConsumer - interface cern.colt.buffer.DoubleBuffer3DConsumer.
Target of a streaming DoubleBuffer3D into which data is flushed upon buffer overflow.
DoubleBufferConsumer - interface cern.colt.buffer.DoubleBufferConsumer.
Target of a streaming DoubleBuffer into which data is flushed upon buffer overflow.
DoubleComparator - interface cern.colt.function.DoubleComparator.
A comparison function which imposes a total ordering on some collection of elements.
DoubleDoubleFunction - interface cern.colt.function.DoubleDoubleFunction.
Interface that represents a function object: a function that takes two arguments and returns a single value.
DoubleDoubleProcedure - interface cern.colt.function.DoubleDoubleProcedure.
Interface that represents a procedure object: a procedure that takes two arguments and does not return a value.
DoubleFactory1D - class cern.colt.matrix.DoubleFactory1D.
Factory for convenient construction of 1-d matrices holding double cells.
DoubleFactory2D - class cern.colt.matrix.DoubleFactory2D.
Factory for convenient construction of 2-d matrices holding double cells.
DoubleFactory3D - class cern.colt.matrix.DoubleFactory3D.
Factory for convenient construction of 3-d matrices holding double cells.
DoubleFunction - interface cern.colt.function.DoubleFunction.
Interface that represents a function object: a function that takes a single argument and returns a single value.
DoubleIntProcedure - interface cern.colt.function.DoubleIntProcedure.
Interface that represents a procedure object: a procedure that takes two arguments and does not return a value.
DoubleListAdapter - class cern.colt.list.adapter.DoubleListAdapter.
Adapter that permits an AbstractDoubleList to be viewed and treated as a JDK 1.2 AbstractList.
DoubleListAdapter(AbstractDoubleList) - Constructor for class cern.colt.list.adapter.DoubleListAdapter
Constructs a list backed by the specified content list.
DoubleMatrix1D - class cern.colt.matrix.DoubleMatrix1D.
Abstract base class for 1-d matrices (aka vectors) holding double elements.
DoubleMatrix1DComparator - interface cern.colt.matrix.doublealgo.DoubleMatrix1DComparator.
A comparison function which imposes a total ordering on some collection of elements.
DoubleMatrix1DProcedure - interface cern.colt.matrix.DoubleMatrix1DProcedure.
Interface that represents a condition or procedure object: takes a single argument and returns a boolean value.
DoubleMatrix2D - class cern.colt.matrix.DoubleMatrix2D.
Abstract base class for 2-d matrices holding double elements.
DoubleMatrix2DComparator - interface cern.colt.matrix.doublealgo.DoubleMatrix2DComparator.
A comparison function which imposes a total ordering on some collection of elements.
DoubleMatrix2DProcedure - interface cern.colt.matrix.DoubleMatrix2DProcedure.
Interface that represents a condition or procedure object: takes a single argument and returns a boolean value.
DoubleMatrix3D - class cern.colt.matrix.DoubleMatrix3D.
Abstract base class for 3-d matrices holding double elements.
DoubleMatrix3DProcedure - interface cern.colt.matrix.DoubleMatrix3DProcedure.
Interface that represents a condition or procedure object: takes a single argument and returns a boolean value.
DoubleProcedure - interface cern.colt.function.DoubleProcedure.
Interface that represents a procedure object: a procedure that takes a single argument and does not return a value.
DoubleQuantileFinder - interface cern.jet.stat.quantile.DoubleQuantileFinder.
The interface shared by all quantile finders, no matter if they are exact or approximate.
DynamicBin1D - class hep.aida.bin.DynamicBin1D.
1-dimensional rebinnable bin holding double elements; Efficiently computes advanced statistics of data sequences.
DynamicBin1D() - Constructor for class hep.aida.bin.DynamicBin1D
Constructs and returns an empty bin; implicitly calls setFixedOrder(false).
dasum(DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Returns the sum of absolute values; |x[0]| + |x[1]| + ...
dasum(DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dasum(DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
daxpy(double, DoubleMatrix1D, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Combined vector scaling; y = y + alpha*x.
daxpy(double, DoubleMatrix2D, DoubleMatrix2D) - Method in interface cern.colt.matrix.linalg.Blas
Combined matrix scaling; B = B + alpha*A.
daxpy(double, DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
daxpy(double, DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
daxpy(double, DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
daxpy(double, DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dcopy(DoubleMatrix1D, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Vector assignment (copying); y = x.
dcopy(DoubleMatrix2D, DoubleMatrix2D) - Method in interface cern.colt.matrix.linalg.Blas
Matrix assignment (copying); B = A.
dcopy(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dcopy(DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dcopy(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dcopy(DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
ddot(DoubleMatrix1D, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Returns the dot product of two vectors x and y, which is Sum(x[i]*y[i]).
ddot(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
ddot(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dec - Static variable in class cern.jet.math.IntFunctions
Function that returns a--.
decompose(DoubleMatrix2D[][], DoubleMatrix2D) - Method in class cern.colt.matrix.DoubleFactory2D
Splits a block matrix into its constituent blocks; Copies blocks of a matrix into the given parts.
decompose(ObjectMatrix2D[][], ObjectMatrix2D) - Method in class cern.colt.matrix.ObjectFactory2D
Splits a block matrix into its constituent blocks; Copies blocks of a matrix into the given parts.
decompose(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.LUDecompositionQuick
Decomposes matrix A into L and U (in-place).
decompose(DoubleMatrix2D, int) - Method in class cern.colt.matrix.linalg.LUDecompositionQuick
Decomposes the banded and square matrix A into L and U (in-place).
deg - Static variable in class cern.clhep.Units
 
degree - Static variable in class cern.clhep.Units
 
delete(boolean) - Method in class cern.colt.list.AbstractBooleanList
Deletes the first element from the receiver that is identical to the specified element.
delete(byte) - Method in class cern.colt.list.AbstractByteList
Deletes the first element from the receiver that is identical to the specified element.
delete(char) - Method in class cern.colt.list.AbstractCharList
Deletes the first element from the receiver that is identical to the specified element.
delete(double) - Method in class cern.colt.list.AbstractDoubleList
Deletes the first element from the receiver that is identical to the specified element.
delete(float) - Method in class cern.colt.list.AbstractFloatList
Deletes the first element from the receiver that is identical to the specified element.
delete(int) - Method in class cern.colt.list.AbstractIntList
Deletes the first element from the receiver that is identical to the specified element.
delete(long) - Method in class cern.colt.list.AbstractLongList
Deletes the first element from the receiver that is identical to the specified element.
delete(short) - Method in class cern.colt.list.AbstractShortList
Deletes the first element from the receiver that is identical to the specified element.
delete(Object, boolean) - Method in class cern.colt.list.ObjectArrayList
Deletes the first element from the receiver that matches the specified element.
demo1() - Method in class cern.colt.matrix.DoubleFactory2D
Demonstrates usage of this class.
demo1() - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
demo1() - Static method in class cern.colt.matrix.doublealgo.Statistic
Demonstrates usage of this class.
demo1() - Static method in class cern.colt.matrix.impl.AbstractFormatter
Demonstrates how to use this class.
demo1() - Static method in class cern.jet.math.Functions
Demonstrates usage of this class.
demo1() - Static method in class cern.jet.random.Benchmark
Prints the first size random numbers generated by the distribution.
demo2() - Method in class cern.colt.matrix.DoubleFactory2D
Demonstrates usage of this class.
demo2() - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
demo2(int, int, boolean) - Static method in class cern.colt.matrix.doublealgo.Statistic
Demonstrates usage of this class.
demo2() - Static method in class cern.colt.matrix.impl.AbstractFormatter
Demonstrates how to use this class.
demo2(int) - Static method in class cern.jet.math.Functions
Benchmarks and demonstrates usage of trivial and complex functions.
demo3(int, double) - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
demo3(Statistic.VectorVectorFunction) - Static method in class cern.colt.matrix.doublealgo.Statistic
Demonstrates usage of this class.
demo3(int, Object) - Static method in class cern.colt.matrix.impl.AbstractFormatter
Demonstrates how to use this class.
demo4() - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
demo5() - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
demo6() - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
demo7() - Static method in class cern.colt.matrix.doublealgo.Formatter
Demonstrates how to use this class.
dense - Static variable in class cern.colt.matrix.DoubleFactory1D
A factory producing dense matrices.
dense - Static variable in class cern.colt.matrix.DoubleFactory2D
A factory producing dense matrices.
dense - Static variable in class cern.colt.matrix.DoubleFactory3D
A factory producing dense matrices.
dense - Static variable in class cern.colt.matrix.ObjectFactory1D
A factory producing dense matrices.
dense - Static variable in class cern.colt.matrix.ObjectFactory2D
A factory producing dense matrices.
dense - Static variable in class cern.colt.matrix.ObjectFactory3D
A factory producing dense matrices.
density(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Property
Returns the matrix's fraction of non-zero cells; A.cardinality() / A.size().
descending(int) - Method in class cern.colt.matrix.DoubleFactory1D
Constructs a matrix with cells having descending values.
descending(int, int) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a matrix with cells having descending values.
descending(int, int, int) - Method in class cern.colt.matrix.DoubleFactory3D
Constructs a matrix with cells having descending values.
det(DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.Algebra
Returns the determinant of matrix A.
det() - Method in class cern.colt.matrix.linalg.LUDecomposition
Returns the determinant, det(A).
det() - Method in class cern.colt.matrix.linalg.LUDecompositionQuick
Returns the determinant, det(A).
dgemm(boolean, boolean, double, DoubleMatrix2D, DoubleMatrix2D, double, DoubleMatrix2D) - Method in interface cern.colt.matrix.linalg.Blas
Generalized linear algebraic matrix-matrix multiply; C = alpha*A*B + beta*C.
dgemm(boolean, boolean, double, DoubleMatrix2D, DoubleMatrix2D, double, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dgemm(boolean, boolean, double, DoubleMatrix2D, DoubleMatrix2D, double, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dgemv(boolean, double, DoubleMatrix2D, DoubleMatrix1D, double, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Generalized linear algebraic matrix-vector multiply; y = alpha*A*x + beta*y.
dgemv(boolean, double, DoubleMatrix2D, DoubleMatrix1D, double, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dgemv(boolean, double, DoubleMatrix2D, DoubleMatrix1D, double, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dger(double, DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix2D) - Method in interface cern.colt.matrix.linalg.Blas
Performs a rank 1 update; A = A + alpha*x*y'.
dger(double, DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dger(double, DoubleMatrix1D, DoubleMatrix1D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
diagonal(DoubleMatrix1D) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a new diagonal matrix whose diagonal elements are the elements of vector.
diagonal(DoubleMatrix2D) - Method in class cern.colt.matrix.DoubleFactory2D
Constructs a new vector consisting of the diagonal elements of A.
diagonal(ObjectMatrix1D) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a new diagonal matrix whose diagonal elements are the elements of vector.
diagonal(ObjectMatrix2D) - Method in class cern.colt.matrix.ObjectFactory2D
Constructs a new vector consisting of the diagonal elements of A.
dimensions() - Method in interface hep.aida.IHistogram
Returns 1 for one-dimensional histograms, 2 for two-dimensional histograms, and so on.
display() - Method in class cern.colt.Timer
Prints the elapsed time on System.out
distance(DoubleMatrix2D, Statistic.VectorVectorFunction) - Static method in class cern.colt.matrix.doublealgo.Statistic
Constructs and returns the distance matrix of the given matrix.
div(DoubleMatrix1D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A / s <=> A[i] = A[i] / s.
div(DoubleMatrix1D, DoubleMatrix1D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A / B <=> A[i] = A[i] / B[i].
div(DoubleMatrix2D, double) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A / s <=> A[row,col] = A[row,col] / s.
div(DoubleMatrix2D, DoubleMatrix2D) - Static method in class cern.colt.matrix.doublealgo.Transform
Deprecated. A = A / B <=> A[row,col] = A[row,col] / B[row,col].
div - Static variable in class cern.jet.math.Functions
Function that returns a / b.
div(double) - Static method in class cern.jet.math.Functions
Constructs a function that returns a / b.
div - Static variable in class cern.jet.math.IntFunctions
Function that returns a / b.
div(int) - Static method in class cern.jet.math.IntFunctions
Constructs a function that returns a / b.
div(double) - Static method in class cern.jet.math.Mult
a / constant.
dnrm2(DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Return the 2-norm; sqrt(x[0]^2 + x[1]^2 + ...).
dnrm2(DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dnrm2(DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
drot(DoubleMatrix1D, DoubleMatrix1D, double, double) - Method in interface cern.colt.matrix.linalg.Blas
Applies a givens plane rotation to (x,y); x = c*x + s*y; y = c*y - s*x.
drot(DoubleMatrix1D, DoubleMatrix1D, double, double) - Method in class cern.colt.matrix.linalg.SeqBlas
 
drot(DoubleMatrix1D, DoubleMatrix1D, double, double) - Method in class cern.colt.matrix.linalg.SmpBlas
 
drotg(double, double, double[]) - Method in interface cern.colt.matrix.linalg.Blas
Constructs a Givens plane rotation for (a,b).
drotg(double, double, double[]) - Method in class cern.colt.matrix.linalg.SeqBlas
 
drotg(double, double, double[]) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dscal(double, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Vector scaling; x = alpha*x.
dscal(double, DoubleMatrix2D) - Method in interface cern.colt.matrix.linalg.Blas
Matrix scaling; A = alpha*A.
dscal(double, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dscal(double, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dscal(double, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dscal(double, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dswap(DoubleMatrix1D, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Swaps the elements of two vectors; y <==> x.
dswap(DoubleMatrix2D, DoubleMatrix2D) - Method in interface cern.colt.matrix.linalg.Blas
Swaps the elements of two matrices; B <==> A.
dswap(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dswap(DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dswap(DoubleMatrix1D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dswap(DoubleMatrix2D, DoubleMatrix2D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dsymv(boolean, double, DoubleMatrix2D, DoubleMatrix1D, double, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Symmetric matrix-vector multiplication; y = alpha*A*x + beta*y.
dsymv(boolean, double, DoubleMatrix2D, DoubleMatrix1D, double, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dsymv(boolean, double, DoubleMatrix2D, DoubleMatrix1D, double, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dtrmv(boolean, boolean, boolean, DoubleMatrix2D, DoubleMatrix1D) - Method in interface cern.colt.matrix.linalg.Blas
Triangular matrix-vector multiplication; x = A*x or x = A'*x.
dtrmv(boolean, boolean, boolean, DoubleMatrix2D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SeqBlas
 
dtrmv(boolean, boolean, boolean, DoubleMatrix2D, DoubleMatrix1D) - Method in class cern.colt.matrix.linalg.SmpBlas
 
dualPartition(double[], double[], int, int, double[], int, int, int[]) - Static method in class cern.colt.Partitioning
Same as Partitioning.dualPartition(int[],int[],int,int,int[],int,int,int[]) except that it synchronously partitions double[] rather than int[] arrays.
dualPartition(double[], double[], int, int, double) - Static method in class cern.colt.Partitioning
Same as Partitioning.dualPartition(int[],int[],int,int,int) except that it synchronously partitions double[] rather than int[] arrays.
dualPartition(int[], int[], int, int, int[], int, int, int[]) - Static method in class cern.colt.Partitioning
Same as Partitioning.partition(int[],int,int,int[],int,int,int[]) except that this method synchronously partitions two arrays at the same time; both arrays are partially sorted according to the elements of the primary array.
dualPartition(int[], int[], int, int, int) - Static method in class cern.colt.Partitioning
Same as Partitioning.partition(int[],int,int,int) except that this method synchronously partitions two arrays at the same time; both arrays are partially sorted according to the elements of the primary array.
durbinWatson(DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Durbin-Watson computation.

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