From: Michael Orlitzky Date: Mon, 25 Feb 2013 14:34:45 +0000 (-0500) Subject: Fix a comment. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=octave.git;a=commitdiff_plain;h=ee2abb133ffec1ba0a9177cb290738ce7a188dcf Fix a comment. --- 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)];