Bridges-Python-3.0.2  3.0.2
Bridges(PythonAPI)
Public Member Functions | Public Attributes | List of all members
bridges.array2d.Array2D Class Reference
Inheritance diagram for bridges.array2d.Array2D:
bridges.array.Array

Detailed Description

This class can be used to create arrays of type Element<E>.

Author
Kalpathi Subramanian, Matthew McQuaigue
Date
10816, 51717, 53018

This class can be used to create arrays of type Element<E> where E is a generic object representing application specific data.

Arrays are internally represented as 1D arrays; currently 1D, 2D and 3D arrays are supported.

Example Tutorial at: http:bridgesuncc.github.iotutorialsArray.html (1D, 2D, and 3D Array)

Public Member Functions

def __init__ (self, rows=None, cols=None)
 Create an array object with the specified dimensions. More...
 
- Public Member Functions inherited from bridges.array.Array
def __init__ (self, kwargs)
 Array constructor. More...
 
def num_dims (self)
 Getter for representing the number of dimensions in the array. More...
 
def num_dims
 Setter function for the number of dimensions for the array. More...
 
def size (self)
 Getter for representing the size of array. More...
 
def size
 Setter for representing the size of the array. More...
 
def set_size
 Set the size of each dimensions; also allocates array space. More...
 
def get_data_structure_type (self)
 Gets the data structure type. More...
 
def get_dimensions (self)
 Get the size of each dimensions. More...
 
def get_element (self, args, kwargs)
 Getter function for an element in the array at given position. More...
 
def set_element (self, args, kwargs)
 Setter function for an element in the array at given position. More...
 
def __getitem__ (self, item)
 
def __setitem__ (self, key, value)
 
def get_data_structure_representation (self)
 Generating the JSON string for a bridges array object. More...
 

Public Attributes

 num_rows
 
 num_cols
 
 size
 
- Public Attributes inherited from bridges.array.Array
 num_dims
 
 size
 

Additional Inherited Members

- Static Public Attributes inherited from bridges.array.Array
list dims = [1,1,1]
 

Constructor & Destructor Documentation

◆ __init__()

def bridges.array2d.Array2D.__init__ (   self,
  rows = None,
  cols = None 
)

Create an array object with the specified dimensions.

(int) rows: number of rows in array (int) cols: number of cols in array

Member Data Documentation

◆ num_cols

bridges.array2d.Array2D.num_cols

◆ num_rows

bridges.array2d.Array2D.num_rows

◆ size

bridges.array2d.Array2D.size

The documentation for this class was generated from the following file: