• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

kunzaatko / TransferFunctions.jl / 17264570321

27 Aug 2025 10:47AM UTC coverage: 81.766%. Remained the same
17264570321

push

github

kunzaatko
test: Add test for the indices method on the PSF

565 of 691 relevant lines covered (81.77%)

33464341.06 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/psf/types/psf-array.jl
1
"""
2
    PSFArray{T<:Real, N} <: PointSpreadFunction{N}
3
A PSF that is defined by an array of values sampled at some rate. 
4

5
The data is stored in the `data` field of the type [`SpatialArray`](@ref) which has to have a dimension of `N`.
6
"""
7
struct PSFArray{T, N, P<:SpatialArray{T, N}} <: PointSpreadFunction{N}
8
    data::P
9
    function PSFArray(data::SpatialArray)
2✔
10
        new{eltype(data),ndims(data),typeof(data)}(data)
4✔
11
    end
12
end
13
Base.parent(tf::PSFArray) = tf.data
4✔
14

15
export PSFArray
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc