Mercurial > repos > public > sbplib_julia
view Grids/src/AbstractGrid.jl @ 332:535f1bff4bcc
Add some notes and some todos
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 25 Sep 2020 11:33:41 +0200 |
parents | b3506cfbb9d8 |
children |
line wrap: on
line source
""" AbstractGrid Should implement dimension(grid::AbstractGrid) points(grid::AbstractGrid) """ abstract type AbstractGrid end function dimension end function points end export dimension, points """ evalOn(g::AbstractGrid, f::Function) Evaluate function f on the grid g """ function evalOn(g::AbstractGrid, f::Function) F(x) = f(x...) return F.(points(g)) end export evalOn