Uses of Class
uavsim.flightdynamicsmodel.Matrix

Packages that use Matrix
uavsim.flightdynamicsmodel Provides... 
 

Uses of Matrix in uavsim.flightdynamicsmodel
 

Fields in uavsim.flightdynamicsmodel declared as Matrix
 Matrix AircraftRigidBody._inertia
          the 3D inertia in units zzz???
 Matrix AircraftRigidBody._inertiaInverse
          the inverse of the 3D inertia
 

Methods in uavsim.flightdynamicsmodel that return Matrix
 Matrix Matrix.add(Matrix matrix)
          Calculates the sum of this matrix and another.
 Matrix Matrix.clone()
          
 Matrix Matrix.divide(double scale)
          Calculates the scaled entries of this matrix.
 Matrix Matrix.inverse()
          Calculates the inverse of this matrix.
 Matrix Matrix.multiply(double scale)
          Calculates the scaled entries of this matrix.
 Matrix Matrix.multiply(Matrix matrix)
          Calculates the product of this matrix and another.
 Matrix Matrix.subtract(Matrix matrix)
          Calculates the difference of this matrix and another.
 Matrix Matrix.transpose()
          Calculates the transpose of this matrix.
 

Methods in uavsim.flightdynamicsmodel with parameters of type Matrix
 Matrix Matrix.add(Matrix matrix)
          Calculates the sum of this matrix and another.
 Matrix Matrix.multiply(Matrix matrix)
          Calculates the product of this matrix and another.
 Matrix Matrix.subtract(Matrix matrix)
          Calculates the difference of this matrix and another.