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/lec04_matlab3 | |
parent | 222292b3aa9d967557c3165cce5cc7f5773c20ab (diff) | |
download | dmmsb2014-822bd0b04d1cce54c2fff57c4b206c51d1dcb940.tar.gz dmmsb2014-822bd0b04d1cce54c2fff57c4b206c51d1dcb940.zip |
rename notes -> lectures
Diffstat (limited to 'notes/lec04_matlab3')
-rw-r--r-- | notes/lec04_matlab3 | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/notes/lec04_matlab3 b/notes/lec04_matlab3 deleted file mode 100644 index 5388d38..0000000 --- a/notes/lec04_matlab3 +++ /dev/null @@ -1,26 +0,0 @@ - - -mean() -std() -exp(x) -> e^x - - - -### julia notes - -ref: http://julia.readthedocs.org/en/latest/manual/noteworthy-differences/ -ref: http://sveme.org/julia-for-matlab-users-i.html - -use maximum() instead of max(). -doesn't return multiple values like matlab. use 'findmax' instead. - -anonymous function syntax: - - find(x-> x > 2, [1,2,3,4,5]) - -unpack using parens (tuples?), not brackets - -writedlm, readdlm instead of dlmwrite, dlmread -read/write instead of save/load? - -some built-ins like {sum, prod, max} are deep, not shallow like in matlab. |