# HG changeset patch # User Mike Miller # Date 1479862074 28800 # Node ID cb5ec7b6c5823b70c5bcc987c63040055c692c56 # Parent 3e9a81efaf7932f59a3ba9580dbd0519e2ca0758 index.html: fix comment about solving a linear system diff -r 3e9a81efaf79 -r cb5ec7b6c582 index.html --- a/index.html Sat Nov 19 10:26:57 2016 -0500 +++ b/index.html Tue Nov 22 16:47:54 2016 -0800 @@ -60,7 +60,7 @@ A = [ 3 4 5; 1 3 1; 3 5 9 ] -x = A \ b # Solve the system Ax = b by inverting A +x = A \ b # Solve the system Ax = b {% endhighlight %}