summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfranken.m21
-rwxr-xr-xwarren.m21
2 files changed, 42 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
diff --git a/warren.m b/warren.m
new file mode 100755
index 0000000..6c5fc44
--- /dev/null
+++ b/warren.m
@@ -0,0 +1,21 @@
+% warren
+
+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 6 12 18 24 30 36 42 48];
+Y = [0 10.4 0 10.4 0 10.4 0 10.4 0];
+
+L = zeros(18,1); L(9+5) = -3.92; \ No newline at end of file