Package lib :: Package frame_order :: Module format
[hide private]
[frames] | no frames]

Module format

source code

Module containing functions related to the Frame Order theories.

Functions [hide private]
 
print_frame_order_2nd_degree(daeg, name=None, places=4, epsilon=1e-15, integer=False, dot=False, comma=True, file=None)
Nicely print out the Frame Order matrix of the 2nd degree.
source code
Variables [hide private]
  __package__ = 'lib.frame_order'

Imports: array, matrix, sys, isNaN


Function Details [hide private]

print_frame_order_2nd_degree(daeg, name=None, places=4, epsilon=1e-15, integer=False, dot=False, comma=True, file=None)

source code 

Nicely print out the Frame Order matrix of the 2nd degree.

Parameters:
  • daeg (numpy 3D, rank-4 array) - The 3D, rank-4 Frame Order matrix.
  • name (None or str) - The name of the matrix.
  • places (int) - The number of decimal places to print.
  • epsilon (float) - The minimum value, below which is considered zero.
  • integer (bool) - A flag which if true will only print the integer part of the number.
  • dot (bool) - A flag which if true replaces all zeros with dot characters.
  • comma (bool) - A flag which if true causes commas to be printed between the elements.
  • file (file object) - The file object to write to.