class documentation

class NumpyNow(DataLoader):

Constructor: NumpyNow(filedata)

View In Hierarchy

Class to create a numpy matrix inline. The format of the uploaded data is (note the commas are the delim,sapce is for visuals) [[[1,2,3], [4, 5, 6]],

[[7, 8, 9], [10, 11, 12]]] self.mtx = np.fromstring('1,2,3,4,5,6,7,8,9,10,11,12', dtype=int, sep=',').reshape([2,2,3])

[[[1, 2], [3, 4], [5, 6]],

[[7, 8], [9, 10], [11, 12]]] self.mtx = np.fromstring('1,2,3,4,5,6,7,8,9,10,11,12', dtype=int, sep=',').reshape([2,3,2])

[[[1, 2], [3, 4]],

[[5, 6], [7, 8]],

[[9, 10], [11, 12]]] self.mtx = np.fromstring('1,2,3,4,5,6,7,8,9,10,11,12', dtype=int, sep=',').reshape([3,2,2])

Method load Load the numpy data from a formatted string of 3d data that must pass the checks for [[[1,2],[3,4]],[[5,6],[7,8]]]
Instance Variable filedata Undocumented
Instance Variable mtx Undocumented
Instance Variable numa Undocumented
Instance Variable numb Undocumented
Instance Variable numc Undocumented

Inherited from DataLoader:

Method __init__ Undocumented
def load(self):

Load the numpy data from a formatted string of 3d data that must pass the checks for [[[1,2],[3,4]],[[5,6],[7,8]]]

filedata =
mtx =

Undocumented

numa =

Undocumented

numb =

Undocumented

numc =

Undocumented