summaryrefslogtreecommitdiff
path: root/warren.m
diff options
context:
space:
mode:
Diffstat (limited to 'warren.m')
-rwxr-xr-xwarren.m21
1 files changed, 21 insertions, 0 deletions
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