David's Octave Assignment: Difference between revisions

From Class Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 4: Line 4:
it looks like this.
it looks like this.


diag([1 2 3])
diag([1 2 3])


ans =
ans =


1 0 0
1 0 0
0 2 0
0 2 0
0 0 3
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