matlib (version 0.9.2)

matrix2latex: Convert matrix to LaTeX equation

Description

This function provides a soft-wrapper to xtable::xtableMatharray() with support for fractions output and square brackets.

Usage

matrix2latex(x, fractions = FALSE, brackets = TRUE, ...)

Arguments

x

a matrix

fractions

logical; if TRUE, try to express non-integers as rational numbers

brackets

logical; include square brackets around the matrices?

...

additional arguments passed to xtable::xtableMatharray()

Examples

Run this code
# NOT RUN {
A <- matrix(c(2, 1, -1,
             -3, -1, 2,
             -2,  1, 2), 3, 3, byrow=TRUE)
b <- c(8, -11, -3)

matrix2latex(cbind(A,b))
matrix2latex(cbind(A,b), digits = 0)
matrix2latex(cbind(A/2,b), fractions = TRUE)

# }

Run the code above in your browser using DataLab