From ee2abb133ffec1ba0a9177cb290738ce7a188dcf Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 25 Feb 2013 09:34:45 -0500 Subject: [PATCH 1/1] Fix a comment. --- advection_matrix_sparse.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advection_matrix_sparse.m b/advection_matrix_sparse.m index ce45e15..a89536c 100644 --- a/advection_matrix_sparse.m +++ b/advection_matrix_sparse.m @@ -13,7 +13,7 @@ function S = advection_matrix_sparse(integerN) top = [ [zeros(integerN-1, 1), speye(integerN-1)]; ... zeros(1, integerN)]; - ## The ones directly below the diagonal. + ## The negative ones directly below the diagonal. bottom = [ [zeros(1, integerN-1); ... -speye(integerN-1) ], zeros(integerN, 1)]; -- 2.43.2