diff stripeMatrix.m @ 358:5cb99f56f55e

Added some utility functions. Improved some documentation.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 05 Dec 2016 13:31:57 +0100
parents 0be702829bb9
children
line wrap: on
line diff
--- a/stripeMatrix.m	Thu Oct 13 09:34:42 2016 +0200
+++ b/stripeMatrix.m	Mon Dec 05 13:31:57 2016 +0100
@@ -1,4 +1,5 @@
 % Creates a matrix of size n,m with the values of val on the diagonals diag.
+%   A = stripeMatrix(val,diags,n,m)
 function A = stripeMatrix(val,diags,n,m)
     default_arg('m',n);