Skip to content

This repository contains R Scripts to cache the inverse of a square matrix.

Notifications You must be signed in to change notification settings

cmchenry/CacheInverseMatrix

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Caching the Inverse of a Matrix

Matrix inversion is usually a costly computation and there may be some benefit to caching the inverse of a matrix rather than computing it repeatedly. This repository contains a pair of functions that cache the inverse of a matrix.

The repository contains the following functions:

  1. makeCacheMatrix: This function creates a special "matrix" object that can cache its inverse.
  2. cacheSolve: This function computes the inverse of the special "matrix" returned by makeCacheMatrix above. If the inverse has already been calculated (and the matrix has not changed), then cacheSolve should retrieve the inverse from the cache.

The inverse of a square matrix is computed with the solve function in R.

About

This repository contains R Scripts to cache the inverse of a square matrix.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 100.0%