diff options
author | bnewbold <bnewbold@robocracy.org> | 2014-04-22 22:01:56 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2014-04-22 22:01:56 -0400 |
commit | 822bd0b04d1cce54c2fff57c4b206c51d1dcb940 (patch) | |
tree | e3cd895f9b54b7d44ff249dea3c50dda927304cc /notes/lec02_matlab1 | |
parent | 222292b3aa9d967557c3165cce5cc7f5773c20ab (diff) | |
download | dmmsb2014-822bd0b04d1cce54c2fff57c4b206c51d1dcb940.tar.gz dmmsb2014-822bd0b04d1cce54c2fff57c4b206c51d1dcb940.zip |
rename notes -> lectures
Diffstat (limited to 'notes/lec02_matlab1')
-rw-r--r-- | notes/lec02_matlab1 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/notes/lec02_matlab1 b/notes/lec02_matlab1 deleted file mode 100644 index 53a8ac3..0000000 --- a/notes/lec02_matlab1 +++ /dev/null @@ -1,24 +0,0 @@ - -'format compact' => less syntax - -self assess: - C) 13x4 - E) vertcat; different columns - -### julia notes: - -built-in types seem to default to just an array instead of, eg, 3x1 or 1x3. - -can transform with "'"; A'' != A? - -to vert/horiz cat, need to explicitly - -julia> size([1,2,3]) -(3,) - -julia> size([1,2,3]') -(1,3) - -julia> size([1,2,3]'') -(3,1) - |