Skip to content

Commit

Permalink
[Matlab] Use legacy qdot/vdot versions for walls
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Jun 26, 2023
1 parent 45f6248 commit fc5c1e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/matlab/wallmethods.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ void wallmethods(int nlhs, mxArray* plhs[],
// options that return a value of type 'double'
switch (job) {
case 21:
r = wall_vdot(i, v);
r = wall_vdot2(i, v);
break;
case 22:
r = wall_Q(i, v);
r = wall_qdot2(i, v);
break;
case 23:
r = wall_area(i);
Expand Down

0 comments on commit fc5c1e3

Please sign in to comment.