diff +util/get_grid.m @ 64:7067bf8adbfa

Fixed some typing and added function to plot eigen values of a matrix.
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 18 Nov 2015 17:14:19 +0100
parents 48b6fb693025
children
line wrap: on
line diff
--- a/+util/get_grid.m	Sat Nov 14 19:48:23 2015 -0800
+++ b/+util/get_grid.m	Wed Nov 18 17:14:19 2015 +0100
@@ -1,3 +1,4 @@
+% [x,h] = get_grid(a,b,m)
 function [x,h] = get_grid(a,b,m)
     % TODO: allow the interval to be a vector
     x = linspace(a,b,m)';