triang: Upper triangular matrix from a vector

Description Usage Arguments Note Author(s) See Also Examples

View source: R/utils.R

Description

Creates an upper triangular square matrix from a vector.

Usage

1
triang( v, n )

Arguments

v

vector

n

desired dimension of the returned square matrix

Note

If the vector has less elements than the upper triangular matrix, the last elements are set to zero.

Author(s)

Arne Henningsen

See Also

veclipos.

Examples

1
2
   v <- c( 1:5 )
   triang( v, 3 )

miscTools documentation built on Dec. 9, 2019, 3 a.m.

Related to triang in miscTools...