polishing (prospector was complaining)
This commit is contained in:
parent
ddd8027b8a
commit
1bb94f03b8
processing/post
python/damask
|
@ -2,10 +2,9 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from io import StringIO
|
||||
from optparse import OptionParser
|
||||
|
||||
import numpy as np
|
||||
|
||||
import damask
|
||||
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from io import StringIO
|
||||
from optparse import OptionParser
|
||||
|
||||
import damask
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from io import StringIO
|
||||
from optparse import OptionParser
|
||||
|
||||
import numpy as np
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from io import StringIO
|
||||
from optparse import OptionParser
|
||||
|
||||
from scipy import ndimage
|
||||
|
|
|
@ -2,10 +2,9 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
from io import StringIO
|
||||
from optparse import OptionParser
|
||||
|
||||
import numpy as np
|
||||
|
||||
import damask
|
||||
|
||||
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
||||
|
|
|
@ -274,7 +274,9 @@ class Table():
|
|||
|
||||
def append(self,other):
|
||||
"""
|
||||
Append other table vertically (similar to numpy.vstack). Requires matching shapes and order.
|
||||
Append other table vertically (similar to numpy.vstack).
|
||||
|
||||
Requires matching labels/shapes and order.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
|
@ -290,8 +292,9 @@ class Table():
|
|||
|
||||
def join(self,other):
|
||||
"""
|
||||
Append other table horizontally (similar to numpy.hstack). Requires matching number of rows
|
||||
and no common lables
|
||||
Append other table horizontally (similar to numpy.hstack).
|
||||
|
||||
Requires matching number of rows and no common labels.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
|
|
Loading…
Reference in New Issue