Uses of Class
org.djunits.formatter.MatrixFormat
Packages that use MatrixFormat
Package
Description
Methods to format quantity-related values for display.
Definition classes for vectors and matrices.
-
Uses of MatrixFormat in org.djunits.formatter
Methods in org.djunits.formatter that return MatrixFormatModifier and TypeMethodDescriptionstatic MatrixFormatMatrixFormat.changeDefaults()Return an instance of MatrixFormat with the DEFAULT values, which can be changed for all subsequent calls.static MatrixFormatMatrixFormat.defaults()Return an instance of MatrixFormat, initialized with the default values.MatrixFormat.setColSeparatorSymbol(String separatorSymbol) Set the separator symbol to use between columns in a row for a matrix, e.g., " ".MatrixFormat.setFirstRowEndSymbol(String endSymbol) Set the end symbol to use for the first row for a matrix, e.g., "|".MatrixFormat.setFirstRowStartSymbol(String startSymbol) Set the start symbol to use for the first row for a matrix, e.g., "|".MatrixFormat.setLastRowEndSymbol(String endSymbol) Set the end symbol to use for the last row for a matrix, e.g., "|".MatrixFormat.setLastRowStartSymbol(String startSymbol) Set the start symbol to use for the last row for a matrix, e.g., "|".MatrixFormat.setMatrixPostfix(String matrixPostfix) Set the matrix postfix, e.g., "".MatrixFormat.setMatrixPrefix(String matrixPrefix) Set the matrix prefix, e.g., "Matrix\n".MatrixFormat.setMiddleRowEndSymbol(String endSymbol) Set the end symbol for a middle row for a matrix, e.g., "]".MatrixFormat.setMiddleRowStartSymbol(String startSymbol) Set the start symbol to use for a middle row in a matrix, e.g., "|".Methods in org.djunits.formatter with parameters of type MatrixFormatModifier and TypeMethodDescriptionstatic StringMatrixFormatter.format(AbsMatrix<?, ?, ?, ?, ?> absMatrix, MatrixFormat matrixFormat) Format an absolute matrix according to a number of MatrixFormat settings.static StringMatrixFormatter.format(Matrix<?, ?, ?, ?, ?> matrix, MatrixFormat matrixFormat) Format a matrix according to a number of MatrixFormat settings. -
Uses of MatrixFormat in org.djunits.vecmat.def
Methods in org.djunits.vecmat.def with parameters of type MatrixFormatModifier and TypeMethodDescriptionAbsMatrix.format(MatrixFormat format) String representation of this matrix after applying the format.Matrix.format(MatrixFormat format) String representation of this matrix after applying the format.