Skip to content

Commit

Permalink
even simpler code as suggested by Oleg
Browse files Browse the repository at this point in the history
  • Loading branch information
dariosanfilippo authored and sletz committed Apr 13, 2021
1 parent add170f commit a1f2eac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions interpolators.lib
Original file line number Diff line number Diff line change
Expand Up @@ -491,9 +491,7 @@ declare lagrangeN author "Dario Sanfilippo";
declare lagrangeN copyright "Copyright (C) 2021 Dario Sanfilippo
<[email protected]>";
declare lagrangeN license "LGPL v3.0 license";
lagrangeN(N, idx) =
lagrange_h(N, idx) ,
si.bus(N + 1) : si.dot(N + 1);
lagrangeN(N, idx) = si.dot(N + 1, lagrange_h(N, idx));
// -----------------------------------------------------------------------------

// ---------- `(it.)frdtable(N, S)` --------------------------------------------
Expand Down

0 comments on commit a1f2eac

Please sign in to comment.