diff reshapeKronVector.m @ 162:c75c03f692b3 feature/grids

Moved function for resizing vectors out of grid.
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 22 Feb 2016 13:34:50 +0100
parents +grid/funcToMatrix.m@73bc43c7379e
children 51aaf67a7df5
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/reshapeKronVector.m	Mon Feb 22 13:34:50 2016 +0100
@@ -0,0 +1,13 @@
+% Takes a grid function and reshapes it into a matrix of shape m.
+% Called by class methods.
+function F = funcToMatrix(gf, m)
+    D = length(m);
+
+    if D == 1
+        F = gf;
+        return
+    end
+
+    % Reshape and reverse order of indecies
+    F = permute(reshape(gf, rot90(m,2)), D:-1:1);
+end
\ No newline at end of file