From 73037009c9d8403dbda92cfea0b4acfc4ee75318 Mon Sep 17 00:00:00 2001 From: Andrew Simms Date: Wed, 4 Dec 2024 10:29:12 -0700 Subject: [PATCH] Actions: Use `py.numpy.ndarray` to coerce `d3d.get_all_time` to np array --- mhkit/river/IO/delft_3d/delft_3d_get_all_time.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mhkit/river/IO/delft_3d/delft_3d_get_all_time.m b/mhkit/river/IO/delft_3d/delft_3d_get_all_time.m index 63c9533a..8353dc3f 100644 --- a/mhkit/river/IO/delft_3d/delft_3d_get_all_time.m +++ b/mhkit/river/IO/delft_3d/delft_3d_get_all_time.m @@ -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));