Skip to content

Commit

Permalink
Actions: Use py.numpy.ndarray to coerce d3d.get_all_time to np array
Browse files Browse the repository at this point in the history
  • Loading branch information
simmsa committed Dec 4, 2024
1 parent 50b9fbd commit 7303700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mhkit/river/IO/delft_3d/delft_3d_get_all_time.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

python_result = py.mhkit.river.io.d3d.get_all_time(delft_3d_py_object);

python_result = py.list(python_result);
python_result = py.numpy.ndarray(python_result);

disp(python_result);
disp(class(python_result));
Expand Down

0 comments on commit 7303700

Please sign in to comment.