summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Abed <michaelabed@gmail.com>2012-04-08 00:27:21 -0400
committerMichael Abed <michaelabed@gmail.com>2012-04-08 00:27:21 -0400
commitc606b37d5c6c93bb722cb94a9b330ca0159d0057 (patch)
tree9d9096c58f284e0656c9fac462011d55bb29413a
parent26c2bfa7a7d02286be61a7044d581f31d4f7938f (diff)
downloadek301-prelim-c606b37d5c6c93bb722cb94a9b330ca0159d0057.tar.gz
ek301-prelim-c606b37d5c6c93bb722cb94a9b330ca0159d0057.tar.bz2
ek301-prelim-c606b37d5c6c93bb722cb94a9b330ca0159d0057.zip
warren and franken
-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