diag_: Symbolic diagonal matrix

View source: R/lin_alg.R

diag_R Documentation

Symbolic diagonal matrix

Description

Symbolic diagonal matrix

Usage

diag_(x, n = 1L, declare_symbols = TRUE, ...)

Arguments

x

Character vector with diagonal

n

Number of times x should be repeated

declare_symbols

Passed on to as_sym() when constructing symbolic matrix

...

Passed on to rep(x, n, ...)

Examples

if (has_sympy()) {
  diag_(c(1,3,5))
  diag_(c("a", "b", "c"))
  diag_("a", 2)
  diag_(vector_sym(4))
}


caracas documentation built on Oct. 17, 2023, 5:08 p.m.