Uses of Class
jline.util.matrix.ComplexMatrix
Packages that use ComplexMatrix
Package
Description
Load-dependent Product Form Queueing Network algorithms.
Normalizing constant algorithms for Product Form Queueing Networks.
Fundamental data structures and utilities
Matrix operations and linear algebra utilities for queueing analysis.
-
Uses of ComplexMatrix in jline.api.pfqn.ld
Methods in jline.api.pfqn.ld with parameters of type ComplexMatrixModifier and TypeMethodDescriptionstatic Ret.pfqnNcComplexPfqn_gld_complex.pfqn_gld_complex(ComplexMatrix L, Matrix N, Matrix mu, SolverOptions options) Compute the normalizing constant of a single-class load-dependent closed queueing network model with complex demands.static Ret.pfqnNcComplexPfqn_gldsingle_complex.pfqn_gldsingle_complex(ComplexMatrix L, Matrix N, Matrix mu, SolverOptions options) Auxiliary function used by pfqn_gld to compute the normalizing constant in a single-class load-dependent model with complex demands. -
Uses of ComplexMatrix in jline.api.pfqn.nc
Methods in jline.api.pfqn.nc that return types with arguments of type ComplexMatrixModifier and TypeMethodDescriptionstatic SerializableFunction<Matrix, ComplexMatrix> Pfqn_nrl.infradius_h(Matrix L, Matrix N, Matrix alpha) static SerializableFunction<Matrix, ComplexMatrix> Pfqn_nrp.infradius_hnorm(Matrix L, Matrix N, Matrix alpha) -
Uses of ComplexMatrix in jline.util
Fields in jline.util declared as ComplexMatrixMethods in jline.util that return ComplexMatrixModifier and TypeMethodDescriptionstatic ComplexMatrixMaths.num_grad_h_complex(Matrix x0, double h, SerializableFunction<Matrix, ComplexMatrix> hfun) static ComplexMatrixMaths.num_hess_h_complex(Matrix x0, double h, SerializableFunction<Matrix, ComplexMatrix> hfun) Method parameters in jline.util with type arguments of type ComplexMatrixModifier and TypeMethodDescriptionMaths.laplaceapprox_h_complex(Matrix x0, SerializableFunction<Matrix, ComplexMatrix> h) static ComplexMatrixMaths.num_grad_h_complex(Matrix x0, double h, SerializableFunction<Matrix, ComplexMatrix> hfun) static ComplexMatrixMaths.num_hess_h_complex(Matrix x0, double h, SerializableFunction<Matrix, ComplexMatrix> hfun) Constructors in jline.util with parameters of type ComplexMatrixModifierConstructorDescriptionlaplaceApproxComplexReturn(ComplexMatrix H, org.apache.commons.math3.complex.Complex I, org.apache.commons.math3.complex.Complex logI) -
Uses of ComplexMatrix in jline.util.matrix
Methods in jline.util.matrix that return ComplexMatrixModifier and TypeMethodDescriptionComplexMatrix.add(ComplexMatrix other) Adds another complex matrix to this one, returning a new matrix.static ComplexMatrixComplexMatrix.concatRows(ComplexMatrix top, ComplexMatrix bottom, ComplexMatrix out) Concatenates two complex matrices vertically (row-wise).ComplexMatrix.conjugateTranspose()Returns the conjugate transpose (Hermitian transpose) of this complex matrix.ComplexMatrix.copy()Creates a deep copy of this complex matrix.static ComplexMatrixComplexMatrix.extractRows(ComplexMatrix A, int row0, int row1, ComplexMatrix out) Extracts a range of rows from a complex matrix.static ComplexMatrixComplexMatrix.eye(int n) Creates a complex identity matrix of the specified size.ComplexMatrix.leftMatrixDivide(ComplexMatrix b) Solves the complex linear system A*x = b.ComplexMatrix.mult(ComplexMatrix other) Multiplies this complex matrix by another complex matrix.ComplexMatrix.scaleComplex(org.apache.commons.math3.complex.Complex z) Scales this complex matrix by a complex scalar, returning a new matrix.ComplexMatrix.sub(ComplexMatrix other) Subtracts another complex matrix from this one, returning a new matrix.ComplexMatrix.sumRows()Computes the sum of each row, returning a complex matrix with one column.ComplexMatrix.transpose()Returns the transpose of this complex matrix.static ComplexMatrixComplexMatrix.zeros(int rows, int cols) Creates a complex zero matrix of the specified dimensions.Methods in jline.util.matrix that return types with arguments of type ComplexMatrixModifier and TypeMethodDescriptionMatrix.schurComplex()Computes the complex Schur decomposition of this matrix, equivalent to MATLAB'sschur(A,'complex').Methods in jline.util.matrix with parameters of type ComplexMatrixModifier and TypeMethodDescriptionComplexMatrix.add(ComplexMatrix other) Adds another complex matrix to this one, returning a new matrix.static ComplexMatrixComplexMatrix.concatRows(ComplexMatrix top, ComplexMatrix bottom, ComplexMatrix out) Concatenates two complex matrices vertically (row-wise).static ComplexMatrixComplexMatrix.extractRows(ComplexMatrix A, int row0, int row1, ComplexMatrix out) Extracts a range of rows from a complex matrix.ComplexMatrix.leftMatrixDivide(ComplexMatrix b) Solves the complex linear system A*x = b.ComplexMatrix.mult(ComplexMatrix other) Multiplies this complex matrix by another complex matrix.ComplexMatrix.sub(ComplexMatrix other) Subtracts another complex matrix from this one, returning a new matrix.