Mercurial > repos > public > sbplib_julia
view src/Grids/grid.jl @ 1117:aeeffca46b94 feature/grids
Minor renamings
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Fri, 15 Jul 2022 09:56:25 +0200 |
parents | c2d7e940639e |
children | dfbd62c7eb09 |
line wrap: on
line source
""" Grid Should implement dim(grid::Grid) points(grid::Grid) """ abstract type Grid end function dim end # TODO: Rename to Base.ndims instead? That's the name used for arrays. function points end """ dims(grid::Grid) A range containing the dimensions of `grid` """ dims(grid::Grid) = 1:dim(grid) """ evalOn(grid::Grid, f::Function) Evaluate function `f` on `grid` """ function evalOn(grid::Grid, f::Function) F(x) = f(x...) return F.(points(grid)) end