David's Octave Assignment: Difference between revisions
Jump to navigation
Jump to search
David.morgan (talk | contribs) Created page with 'I followed the Instructions "Read this first!!" For acquiring a copy of Octave. I just copied it to my flash drive from a computer lab pc. I played around with Octave as instru…' |
David.bryson (talk | contribs) No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
You can abort any command in octave by pressing Ctrl C. | |||
and you can create a diagonal matrix by entering diag([1 2 3]) | |||
it looks like this. | |||
diag([1 2 3]) | |||
ans = | |||
1 0 0 | |||
0 2 0 | |||
0 0 3 | |||
Latest revision as of 10:10, 4 October 2010
You can abort any command in octave by pressing Ctrl C.
and you can create a diagonal matrix by entering diag([1 2 3]) it looks like this.
diag([1 2 3])
ans =
1 0 0 0 2 0 0 0 3