Skip to content

Commit 140ba27

Browse files
committed
update doc
1 parent 38ddb2e commit 140ba27

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/umv/evaluate.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ impl<'a, T> NdSpline<'a, T>
99
where T: NdFloat + AlmostEqual
1010
{
1111
/// Implements evaluating the spline on the given mesh of Xi-sites
12+
///
13+
/// The internal method to avoid copying coeffs array
1214
pub(crate) fn evaluate_spline(
1315
order: usize,
1416
pieces: usize,
1517
breaks: ArrayView1<'_, T>,
1618
coeffs: ArrayView2<'_, T>,
1719
xi: ArrayView1<'a, T>) -> Array2<T>
1820
{
19-
2021
let edges = {
2122
let mesh = breaks.slice(s![1..-1]);
2223
let one = Array1::<T>::ones((1, ));

0 commit comments

Comments
 (0)