diff options
author | User <bnewbold@daemon.robocracy.org> | 2009-10-13 02:52:09 +0000 |
---|---|---|
committer | User <bnewbold@daemon.robocracy.org> | 2009-10-13 02:52:09 +0000 |
commit | f61026119df4700f69eb73e95620bc5928ca0fcb (patch) | |
tree | f17127cff9fec40f4207d9fa449b9692644ce6db /software/matlab | |
parent | 9d431740a3e6a7caa09a57504856b5d1a4710a14 (diff) | |
download | knowledge-f61026119df4700f69eb73e95620bc5928ca0fcb.tar.gz knowledge-f61026119df4700f69eb73e95620bc5928ca0fcb.zip |
Grand rename for gitit transfer
Diffstat (limited to 'software/matlab')
-rw-r--r-- | software/matlab | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/software/matlab b/software/matlab deleted file mode 100644 index 20e7110..0000000 --- a/software/matlab +++ /dev/null @@ -1,39 +0,0 @@ -================== -Matlab -================== - -.. warning:: - Stub, just getting started - -`cyclismo.org <http://www.cyclismo.org/tutorial/matlab/matrix.html>`_ has a good tutorial. - -Matrix Syntax ------------------- -A = [1,2,3,4] - creates a new matrix -A(1) - selects the first element of a matrix, **zero-indexed** -B = [ [1,2,3], [4,5,6], [7,8,9] ] - creates a one dimensional matrix - -:: - - B = [ [1,2,3], - [4,5,6], - [7,8,9] ] - - creates a two dimensional matrix - -Matrix Operations ------------------- -``inv`` - inverts a square matrix - -Meta-Commands ------------------- -Placing a semicolon at the end of a line prevents the output from being printed to screen. - -``whos`` - Displays variables and their size -``format long``/``format short`` - Selects either 4 or 14 decimal place display |