replaceBand: Replace matrix values by band.

View source: R/global.R

replaceBandR Documentation

Replace matrix values by band.

Description

F matrices utility function.

Usage

replaceBand(a, b, k)

Arguments

a

The matrix to be replaced

b

The matrix with the replacement values

k

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

Value

A matrix (same size as a)

Author(s)

Bertrand Frederic, Myriam Maumy-Bertrand.

Examples


a=matrix(1:9,3,3)
b=matrix(0,3,3)
replaceBand(a,b,0)
replaceBand(a,b,1)
replaceBand(a,b,2)


fbertran/Patterns documentation built on May 6, 2024, 9:23 p.m.