From 9283d0c5b3a4418a964a102c9b91fe70a74a9e7f Mon Sep 17 00:00:00 2001 From: Eric Borts Date: Sat, 29 Mar 2014 18:29:27 -0600 Subject: [PATCH] Added note about column vectors --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8c238e..0c8e3db 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,11 @@ To run the tests, follow these steps: >> test test_ex2 PASSED 6 out of 6 tests + +Conventions and Guidelines: + +* vectors are represented as __column vectors__ unless they are required to be row vectors by the submit script. +* all unit tests that I submit here are passing, and the code I tested against these tests has been accepted by the submit script. Adding your own tests @@ -27,4 +32,6 @@ To add your own tests, create a new function like `test_foo.m` and add a line to %!test test_foo() -Thanks! And I hope this helps everyone out! \ No newline at end of file +Please __do not commit any nonworking unit tests__!!! + +Thanks, and I hope this helps everyone out!