Advertisement
Guest User

Untitled

a guest
Sep 20th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.33 KB | None | 0 0
  1. Assignment1/Makefile:
  2. Assignment1/f:
  3. Assignment1/teststates:
  4. Assignment1/tictactoe.bin:
  5. Assignment1/tmm.c:
  6. //typedefs
  7. typedef char board_t[12]; //valid c string
  8.                           //board_t[10] == cx
  9.                           //board_t[11] == co
  10. //macros
  11. //constants
  12. //function declarations
  13. //globals
  14. /// Return if X wins, O wins.
  15.         //rows
  16.         //cols
  17.     // downwards diag
  18.     //upwards diag
  19.     //whose move / draw
  20.         //rows
  21.         //cols
  22.     // downwards diag
  23.     //upwards diag
  24.                     //look at nodes around you
  25.                     // look at nodes around you
  26.     int dummy; //ignore
  27. Assignment1/tmmorris.bin:
  28. Assignment1/ttt.c:
  29. //typedefs
  30. typedef char board_t[10]; //valid c string
  31. //macros
  32. //constants
  33. //function declarations
  34. //globals
  35. /// Return if X wins, O wins, or if draw. If game ongoing return
  36.         //rows
  37.         //cols
  38.     // downwards diag
  39.     //upwards diag
  40.     //whose move / draw
  41.     int dummy; //ignore
  42.         //rows
  43.         //cols
  44.     // downwards diag
  45.     //upwards diag
  46. //#define TEST
  47.     //select heuristic based on ply
  48. Assignment2/Eigen:
  49. Assignment2/Makefile:
  50. Assignment2/debug.txt:
  51. Assignment2/eigenfaces.bin:
  52. Assignment2/main.cc:
  53. //all the usual utilities
  54. //readdir
  55. //Reading stuff from places.
  56. //kd-tree partition
  57. //Euclidean distance
  58. //Eigen headers needed
  59. //M
  60. //usage func
  61.         //ignore comment
  62.         //ignore colour depth
  63.         //oh god kill me
  64. //k-d tree implementation
  65.     int   d;  //dimension of this node {0-n-1}
  66.     node  *left;      //children's vec[dim] < vec[dim]
  67.    node  *right;     //children's vec[dim] >= vec[dim]
  68.     //rearrange imgset
  69.     //left build
  70.     //right build
  71.         //leaf node, see if we're adding to ncandidates
  72.    //not root node, check to see which halves we recurse into
  73.    //recurse into closest
  74.    //select new worst
  75.    //directories to get pgms from
  76.    //variance to keep
  77.    //k nearest neighbours
  78.    //dimensions required
  79.    //image array
  80.    //testing images
  81.    //parse parameters
  82.    //read training set into memory
  83.    //find the average vector, normalize.
  84.    //SVD
  85.    //calculate how many dimensions we require
  86.    //take principal components of data
  87.    //reduce dimensions via projection onto PC.
  88.    //construct k-d tree
  89.    //read testing data
  90.    //reduce dimensions via projection
  91.        //test against k-d tree
  92. Assignment2/orl_test:
  93. Assignment2/orl_train:
  94. Assignment2/results.txt:
  95. Assignment2PGRD/Makefile:
  96. Assignment2PGRD/main.cc:
  97. //all the usual utilities
  98. //readdir
  99. //Reading stuff from places.
  100. //kd-tree partition
  101. //Euclidean distance
  102. //Eigen headers needed
  103. //usage func
  104.        //ignore comment
  105.        //ignore colour depth
  106.        //oh god kill me
  107. //k-d tree implementation
  108.    int   d;  //dimension of this node {0-n-1}
  109.    node  *left;      //children's vec[dim] < vec[dim]
  110.     node  *right;     //children's vec[dim] >= vec[dim]
  111.    //rearrange imgset
  112.    //left build
  113.    //right build
  114.        //leaf node, see if we're adding to ncandidates
  115.     //not root node, check to see which halves we recurse into
  116.     //recurse into closest
  117.     //select new worst
  118.     //directories to get pgms from
  119.     //variance to keep
  120.     //k nearest neighbours
  121.     //dimensions required
  122.     //image array
  123.     //testing images
  124.     //parse parameters
  125.     //read training set into memory
  126.     //find the average vector, normalize.
  127.     //SVD
  128.     //calculate how many dimensions we require
  129.     //take principal components of data
  130.     //reduce dimensions via projection onto PC.
  131.     //construct k-d tree
  132.     //read testing data
  133.     //reduce dimensions via projection
  134.         //test against k-d tree
  135. Assignment3/Eigen:
  136. Assignment3/Makefile:
  137. Assignment3/landerorbit.txt:
  138. Assignment3/main.cc:
  139.     //current estimate and prediction of state
  140.     //current estimate and prediction of covariance
  141.     //Kalman gain matrix
  142.     //noise
  143.     //recorded measurement
  144.     //LTs
  145.     //comma
  146.     //skip first measurement
  147.     //Get next measurement
  148.         //prediction
  149.         // nxt = F * xt + 0
  150.         // nct = F * ct * F^t + xn
  151.         //update
  152.         //kt = nct * H^t * (H * nct * H^t + mn)^-1
  153.         // xt = nxt + kt * (zt - H * nxt)
  154.         // ct = (I - kt * H) * nct  
  155.         //prediction
  156.         // nxt = F * xt + 0
  157.         // nct = F * ct * F^t + xn
  158.         //update
  159.         //kt = nct * H^t * (H * nct * H^t + mn)^-1
  160.         // xt = nxt + kt * (zt - H * nxt)
  161.         // ct = (I - kt * H) * nct  
  162. Assignment3/main.cc~:
  163.     //current estimate and prediction of state
  164.     //current estimate and prediction of covariance
  165.     //Kalman gain matrix
  166.     //noise
  167.     //recorded measurement
  168.     //LTs
  169.     //comma
  170.     //skip first measurement
  171.     //Get next measurement
  172.         //prediction
  173.         // nxt = F * xt + 0
  174.         // nct = F * ct * F^t + xn
  175.         //update
  176.         //kt = nct * H^t * (H * nct * H^t + mn)^-1
  177.         // xt = nxt + kt * (zt - H * nxt)
  178.         // ct = (I - kt * H) * nct  
  179.         //prediction
  180.         // nxt = F * xt + 0
  181.         // nct = F * ct * F^t + xn
  182.         //update
  183.         //kt = nct * H^t * (H * nct * H^t + mn)^-1
  184.         // xt = nxt + kt * (zt - H * nxt)
  185.         // ct = (I - kt * H) * nct  
  186. Assignment3/main.exe:
  187. Assignment3/moonlander.bin:
  188. Binary file (standard input) matches
  189. f.txt/f.txt:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement