special.matrix {matrixNormal}R Documentation

Generating Special Matrices

Description

Creates an Identity Matrix I and a Matrix of Ones J.

Usage

I(n)

J(n, m = n)

Arguments

n

Number of rows in I or J.

m

Number of columns in J. Default: Same as number of rows.

See Also

Other matrix: tr(), vec()

Examples

# To create an identity matrix of order 12
I(2)
# To make a matrix of 6 rows and 10 columns of all ones
J(6, 10)
# To make a matrix of unity, dimensions 6 x 6.
J(6)

[Package matrixNormal version 0.1.1 Index]