triang {micEcon}R Documentation

Upper triangular matrix from a vector

Description

Creates an upper triangular square matrix from a vector.

Usage

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 ahenningsen@agric-econ.uni-kiel.de

See Also

veclipos.

Examples

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

[Package micEcon version 0.1-7 Index]