You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think we should probably take the #3745 PR as example and have the following:
# consider that the column headers are not included in the array, but the rows headers are.mapdl.load_table('acc_data', acceleration_data, 'time', col_headers=[1, 2, 3, 4])
# consider that the row headers are not included in the array, but the columns headers are.mapdl.load_table('acc_data', acceleration_data, 'time', row_headers=[10, 20, 30, 40])
# consider that the column header are not included in the array, but the rows headers are.# Everything in `acceleration_data` is data.mapdl.load_table('acc_data', acceleration_data, 'time', col_headers=[1, 2, 3, 4], row_headers=[10, 20, 30, 40])
This should build on top of #3745. @kmkoshy this is extra work if you are up for the challenge.
Originally posted by @germa89 in #3305
The text was updated successfully, but these errors were encountered: