Learn R Programming

Patterns (version 1.2)

replaceDown: Replace matrix values triangular lower part and by band for the upper part.

Description

F matrices utility function.

Usage

replaceDown(a, b, k)

Arguments

a

The matrix to be replaced

b

The matrix with the replacement values

k

The extend of the replacement: 0 (lower part and diagonal only), 1 (lower part and first extra diagonal), in general an entry is replaced if -(row(a) - col(a)) <= k

Value

A matrix (same size as a)

Examples

Run this code
# NOT RUN {
a=matrix(1:9,3,3)
b=matrix(1,3,3)
replaceDown(a,b,0)
replaceDown(a,b,1)
replaceDown(a,b,2)
# }

Run the code above in your browser using DataLab