summaryrefslogtreecommitdiff
path: root/franken.m
diff options
context:
space:
mode:
Diffstat (limited to 'franken.m')
-rwxr-xr-xfranken.m21
1 files changed, 21 insertions, 0 deletions
diff --git a/franken.m b/franken.m
new file mode 100755
index 0000000..4367480
--- /dev/null
+++ b/franken.m
@@ -0,0 +1,21 @@
+% franken
+
+C = [
+ 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0
+ 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0
+ 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0
+ 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0
+ 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0
+ 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0
+ 0 0 0 0 0 0 0 0 0 1 1 0 1 1 0
+ 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1
+ 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
+];
+
+Sx = zeros(9,3); Sx(1,1)=1;
+Sy = zeros(9,3); Sy(1,2)=1; Sy(9,3)=1;
+
+X = [0 9 14 19 24 29 34 39 48 ];
+Y = [0 8.66 0 8.66 0 8.66 0 8.66 0];
+
+L = zeros(18,1); L(9+5) = -3.92; \ No newline at end of file