summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Abed <michaelabed@gmail.com>2012-04-08 00:28:17 -0400
committerMichael Abed <michaelabed@gmail.com>2012-04-08 00:28:17 -0400
commitf950899cf0133d864abe4fece0fac469e28e8023 (patch)
treee244b8ad3c4d3b117dbb9d93a0dee00810bfaeb9
parentc606b37d5c6c93bb722cb94a9b330ca0159d0057 (diff)
downloadek301-prelim-f950899cf0133d864abe4fece0fac469e28e8023.tar.gz
ek301-prelim-f950899cf0133d864abe4fece0fac469e28e8023.tar.bz2
ek301-prelim-f950899cf0133d864abe4fece0fac469e28e8023.zip
pratt
-rw-r--r--pratt.m31
1 files changed, 31 insertions, 0 deletions
diff --git a/pratt.m b/pratt.m
new file mode 100644
index 0000000..b71ae70
--- /dev/null
+++ b/pratt.m
@@ -0,0 +1,31 @@
+C = [
+ 1 1 0 0 0 0 0 0 0 0 0 0
+ 1 0 1 0 0 0 0 0 0 0 0 0
+ 0 1 1 0 0 0 0 0 0 0 0 0
+ 0 0 1 1 0 0 0 0 0 0 0 0
+ 0 1 0 1 0 0 0 0 0 0 0 0
+ 0 1 0 0 1 0 0 0 0 0 0 0
+ 0 0 0 1 1 0 0 0 0 0 0 0
+ 0 0 0 1 0 0 1 0 0 0 0 0
+ 0 0 0 0 1 0 1 0 0 0 0 0
+ 0 0 0 0 1 1 0 0 0 0 0 0
+ 0 0 0 0 0 1 1 0 0 0 0 0
+ 0 0 0 0 0 0 1 1 0 0 0 0
+ 0 0 0 0 0 0 1 0 1 0 0 0
+ 0 0 0 0 0 1 0 0 1 0 0 0
+ 0 0 0 0 0 0 0 1 1 0 0 0
+ 0 0 0 0 0 0 0 1 0 0 1 0
+ 0 0 0 0 0 0 0 1 0 1 0 0
+ 0 0 0 0 0 0 0 0 1 1 0 0
+ 0 0 0 0 0 0 0 0 0 1 1 0
+ 0 0 0 0 0 0 0 0 0 0 1 1
+ 0 0 0 0 0 0 0 0 0 1 0 1
+]
+
+Sy = zeros(12,21); Sy(1,2) = 1; Sy(12,3)=1;
+Sx = zeros(12,21); Sx(1,1) = 1;
+
+X = [0 8 8 16 16 24 24 32 32 40 40 48];
+Y = [0 8 0 0 8 8 0 0 8 8 0 0];
+
+L = zeros(24,1); L(12+7) = -3.92;