Mo Logo [Home] [Lexikon] [Aufgaben] [Tests] [Kurse] [Begleitmaterial] [Hinweise] [Mitwirkende] [Publikationen]

Mathematik-Online-Lexikon:

Ausführungsbeispiel Matlab


A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Übersicht

Kurze MATLAB-Session zum Lösen eines linearen Gleichungssystems. Die Ausführung erfolgt innerhalb einer Linux-Shell:
  user@host:~> matlab -nodesktop
  
                                        < M A T L A B >
                            Copyright 1984-2005 The MathWorks, Inc.
                             Version 7.1.0.183 (R14) Service Pack 3
                                        August 02, 2005
  
  
    To get started, type one of these: helpwin, helpdesk, or demo.
    For product information, visit www.mathworks.com.
  
  >> A=[5 0 -2; 3 2 9; 6 1 4]
  
  A =
  
       5     0    -2
       3     2     9
       6     1     4
  
  >> A\[-3; -6; -7]
  
  ans =
  
     -1.0000
      3.0000
     -1.0000

  >> exit
  user@host:~>
(Autoren: Hörner/Wipper)

[Verweise]

  automatisch erstellt am 12.  1. 2007