Skip to content

Repository for Programming Assignment 2 for R Programming on Coursera

Notifications You must be signed in to change notification settings

Sharad-Jaiswal/ProgrammingAssignment2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

Coursera Programming Assiggnment - Caching the Inverse of a Matrix

Objective of the current code is two fold - one is to calculate the inverse of a square matrix and along with also store the matrix and the calculated inverse value in cache. so that if we need to get the inverse again then it can be retrieved from stored cache. In this way we can improve the efficiency of our codes by not repetitively calculate the inverse again and again of same matrix. Current code only deals with square matrix.

Here, two functions have been used to cache the matrix and its inverse together and retrieve it later.

  1. First Function as - makeCacheMatrix: This function creates a special "matrix" object that can cache its inverse. There are four sub-functions as mentioned below created within this function such as
  • setmatrix - stroes matrix
  • getmatrix - get matrix from cache
  • setinverse - calculate inverse
  • getinverse - get inverse from cache
  1. Second Function as 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.

Guideline to use the code

Store the R code "cachematrix.R" in your directory and run the code. for testing you can use follwoing -

  • run following for a sample run-
  • create a matrix: sample <- makeCacheMatrix( matrix(c(10,20,50,70,90,110,200,100,300), nrow = 3, ncol = 3) )
  • get inverse: cacheSolve(sample)
  • again run to get inverse from cache: cacheSolve(sample)

About

Repository for Programming Assignment 2 for R Programming on Coursera

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 100.0%