diff options
author | Michael Abed <michaelabed@gmail.com> | 2012-04-08 00:28:17 -0400 |
---|---|---|
committer | Michael Abed <michaelabed@gmail.com> | 2012-04-08 00:28:17 -0400 |
commit | f950899cf0133d864abe4fece0fac469e28e8023 (patch) | |
tree | e244b8ad3c4d3b117dbb9d93a0dee00810bfaeb9 | |
parent | c606b37d5c6c93bb722cb94a9b330ca0159d0057 (diff) | |
download | ek301-prelim-f950899cf0133d864abe4fece0fac469e28e8023.tar.gz ek301-prelim-f950899cf0133d864abe4fece0fac469e28e8023.tar.bz2 ek301-prelim-f950899cf0133d864abe4fece0fac469e28e8023.zip |
pratt
-rw-r--r-- | pratt.m | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -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;
|