Skip to content

Commit

Permalink
Update docs/developers_notes/04-basis_module.md
Browse files Browse the repository at this point in the history
Co-authored-by: William F. Broderick <[email protected]>
  • Loading branch information
BalzaniEdoardo and billbrod authored Dec 9, 2024
1 parent c1773bc commit 66cfa71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/developers_notes/04-basis_module.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ This method performs the following steps:

1. Checks that the number of inputs matches what the basis being evaluated expects (e.g., one input for a 1-D basis, N inputs for an N-D basis, or the sum of N 1-D bases), and raises a `ValueError` if this is not the case.
2. Calls `_get_samples` method, which returns equidistant samples over the domain of the basis function. The domain may depend on the type of basis.
3. Calls the `_evaluate` method.
3. Calls the [`_evaluate`](nemos.basis._basis.Basis._evaluate) method on these samples.
4. Returns both the sample grid points of shape `(m1, ..., mN)`, and the evaluation output at each grid point of shape `(m1, ..., mN, n_basis_funcs)`, where `mi` is the number of sample points for the i-th axis of the grid.

### Abstract Methods
Expand Down

0 comments on commit 66cfa71

Please sign in to comment.