krylov: Krylov sequence

View source: R/krylov.r

krylovR Documentation

Krylov sequence

Description

This function computes the Krylov sequence of a matrix and a vector.

Usage

krylov(A, b, m)

Arguments

A

square matrix of dimension p x p.

b

vector of length p

m

length of the Krylov sequence

Value

A matrix of size p x m containing the sequence b,Ab,..., A^(m-1)b.

Author(s)

Nicole Kraemer

Examples


A<-matrix(rnorm(8*8),ncol=8)
b<-rnorm(8)
K<-krylov(A,b,4)


plsdof documentation built on Dec. 1, 2022, 1:13 a.m.