9 lines
180 B
Python
9 lines
180 B
Python
import numpy as np
|
|
|
|
from ..block import ColumnOrientedBlock
|
|
|
|
|
|
class NumpyColumnOrientedBlock(ColumnOrientedBlock):
|
|
def transposed(self):
|
|
return np.transpose(self.data)
|