diff diracDiscr.m @ 1246:25efceb0c392 feature/dirac_discr

Apply some nitpicking
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 20 Nov 2019 21:02:06 +0100
parents 0a1c64d3c717
children 60c875c18de3
line wrap: on
line diff
--- a/diracDiscr.m	Wed Nov 20 20:30:45 2019 +0100
+++ b/diracDiscr.m	Wed Nov 20 21:02:06 2019 +0100
@@ -1,12 +1,12 @@
-
+% n-dimensional delta function
+% g: cartesian grid
+% x_s: source point coordinate vector, e.g. [x; y] or [x; y; z].
+% m_order: Number of moment conditions
+% s_order: Number of smoothness conditions
+% H: cell array of 1D norm matrices
 function d = diracDiscr(g, x_s, m_order, s_order, H)
-    % n-dimensional delta function
-    % g: cartesian grid
-    % x_s: source point coordinate vector, e.g. [x; y] or [x; y; z].
-    % m_order: Number of moment conditions
-    % s_order: Number of smoothness conditions
-    % H: cell array of 1D norm matrices
     assertType(g, 'grid.Cartesian');
+    
     dim = g.d;
     d_1D = cell(dim,1);
 
@@ -25,7 +25,6 @@
         d = (d_1D{i}*d')';
         d = d(:);
     end
-
 end