MatrixAlternative: Interchanging specified rows and columns

Description Usage Arguments Value Examples

Description

Interchange all elements between two specified rows and columns in a matrix.

Usage

1
2
# A matrix-like data
MatrixAlternative(data, sub, rep)

Arguments

data

A matrix to be processed.

sub

A positive integer. The first selected dimension.

rep

A positive integer. The second selected dimension. Default value is 1.

Value

return a matrix with interchanged rows and columns in two specified dimensions.

Examples

1
2
3
4
5
library(plyr)

M <- matrix(1:9,3,3,1)
M
MatrixAlternative(M, 2)

CubicZebra/MVNBayesian documentation built on May 17, 2019, 2:14 a.m.