From e4eed4153bd237a2dd4532fc3f40ce0e22fd0cb7 Mon Sep 17 00:00:00 2001 From: "Roger D. Peng [amelia]" Date: Tue, 14 Jan 2014 17:16:07 -0500 Subject: [PATCH] A few more comments on what to do --- cachematrix.R | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/cachematrix.R b/cachematrix.R index d08740138d0..a50be65aa44 100644 --- a/cachematrix.R +++ b/cachematrix.R @@ -1,10 +1,15 @@ -## [Put comments here that describe what your functions do] +## Put comments here that give an overall description of what your +## functions do + +## Write a short comment describing this function makeCacheMatrix <- function(x = matrix()) { } +## Write a short comment describing this function + cacheSolve <- function(x, ...) { ## Return a matrix that is the inverse of 'x' }