Skip to content

Commit 2dcc4a3

Browse files
committed
cleanup docstring again
1 parent 24fbf13 commit 2dcc4a3

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/ansys/mapdl/core/mapdl.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2885,6 +2885,9 @@ def load_table(self, name, array, var1="", var2="", var3="", csysid=""):
28852885
28862886
Examples
28872887
--------
2888+
Transfer a table to MAPDL. The first column is time values and must be
2889+
ascending in order.
2890+
28882891
>>> my_conv = np.array([[0, 0.001],
28892892
[120, 0.001],
28902893
[130, 0.005],
@@ -2893,7 +2896,12 @@ def load_table(self, name, array, var1="", var2="", var3="", csysid=""):
28932896
[1000, 0.002]])
28942897
>>> mapdl.load_table('MY_TABLE', my_conv, 'TIME')
28952898
>>> mapdl.parameters['MY_TABLE']
2896-
array([0.0001, 0.0001, 0.0005, 0.0005, 0.0002, 0.0002])
2899+
array([[0.001],
2900+
[0.001],
2901+
[0.005],
2902+
[0.005],
2903+
[0.002],
2904+
[0.002]])
28972905
"""
28982906
if not isinstance(array, np.ndarray):
28992907
raise ValueError("The table should be a Numpy array")

0 commit comments

Comments
 (0)