eigen_compute_single_entry_of_diagonal_matrix: Compute Single Value of the Diagonal of a Symmetric Matrix's...

View source: R/code.R

eigen_compute_single_entry_of_diagonal_matrixR Documentation

Compute Single Value of the Diagonal of a Symmetric Matrix's Inverse

Description

Via the eigen package's conjugate gradient descent algorithm.

Usage

eigen_compute_single_entry_of_diagonal_matrix(M, j, num_cores = 1)

Arguments

M

The symmetric matrix which to invert (and then extract one element of its diagonal)

j

The diagonal entry of M's inverse

num_cores

The number of cores to use. Default is 1.

Value

The value of m^-1_j,j

Author(s)

Adam Kapelner

Examples

	n = 500
	X = matrix(rnorm(n^2), nrow = n, ncol = n)
	M = t(X) %*% X
	j = 137
	eigen_compute_single_entry_of_diagonal_matrix(M, j)
	solve(M)[j, j] #to ensure it's the same value

fastLogisticRegressionWrap documentation built on Aug. 8, 2023, 5:13 p.m.