PSS Common Module
MATLAB toolboxes for aerospace analysis
|
PSS internal file version information. More...
Functions | |
function | quat (in x) |
Create an object of class quat. More... | |
function | ctranspose (in a) |
Default in the Space Shuttle Convention. More... | |
function | get (in a) |
PSS internal file version information. More... | |
function | scalar (in a) |
PSS internal file version information. More... | |
function | vector (in a) |
PSS internal file version information. More... | |
PSS internal file version information.
Copyright (c) 1997 Princeton Satellite Systems, Inc. All rights reserved.
Returns the vector part of a quaternion.
function ctranspose | ( | in | a | ) |
Default in the Space Shuttle Convention.
Copyright (c) 1997 Princeton Satellite Systems, Inc. All rights reserved.
PSS internal file version information
Computes the transpose of a quaternion.
b = ctranspose( a )
a (:) Object of type quat
b (:) Object of class quat
function get | ( | in | a | ) |
PSS internal file version information.
Copyright (c) 1997 Princeton Satellite Systems, Inc. All rights reserved.
Gets the scalar and vector equivalent of a quat.
[s, v] = get( a )
a (:) Object of type transmat
s (1,1) Scalar part v (3,1) Vector part
Referenced by Deactivate(), and MLog().
function quat | ( | in | x | ) |
Create an object of class quat.
You can input:
4-by-1 matrix - assumed to be a quaternion 3-by-1 matrix - assumed to be an array of angles 3-by-3 matrix - assumed to be a transformation matrix
q = quat( x )
x (4,1) Quaternion (3,3) Matrix (3,1) Array of angles
q (1,1) Object of class quaternion.
function scalar | ( | in | a | ) |
function vector | ( | in | a | ) |