ports/math/octave-forge-nlwing2/files/patch-biotsavart.cc
Stephen Montgomery-Smith 6473aac25b - Update math/octave to 6.2.0.
- Bump portrevision of dependent ports.
- Add patches to dependent ports math/octave-forge-* if I can figure them out.
- Mark broken dependent ports I couldn't figure out.
2021-02-21 22:41:34 +00:00

20 lines
990 B
C++

--- biotsavart.cc.orig 2021-02-21 21:52:50 UTC
+++ biotsavart.cc
@@ -128,7 +128,7 @@ by a vortex segment joining @code{@var{x}(j,1:3)} and
Matrix X = args(1).matrix_value ();
RowVector dir = args(2).row_vector_value ();
if (CP.cols () == 3
- && X.cols () == 3 && dir.length () == 3)
+ && X.cols () == 3 && dir.numel () == 3)
{
octave_idx_type m = CP.rows (), n = X.rows ();
NDArray vi (dim_vector (m, n, 3));
@@ -148,7 +148,7 @@ by a vortex segment joining @code{@var{x}(j,1:3)} and
Matrix X = args(2).matrix_value ();
RowVector dir = args(3).row_vector_value ();
if (CP.cols () == 3 && CN.cols () == 3 && CP.rows () == CN.rows ()
- && X.cols () == 3 && dir.length () == 3)
+ && X.cols () == 3 && dir.numel () == 3)
{
octave_idx_type m = CP.rows (), n = X.rows ();
Matrix vn (m, n);