ptiede / Comrade.jl

MIT License
47 stars 7 forks source link

GainCache struct or function not in Docs #180

Closed rohandahale closed 1 year ago

rohandahale commented 1 year ago

Comrade.jl/src/calibration/gains.jl

Line 70 to 81:

struct GainCache{D1<:DesignMatrix, D2<:DesignMatrix, T, S}
    m1::D1
    m2::D2
    times::T
    stations::S
end

function GainCache(st::ScanTable)
    gtime, gstat = gain_stations(st)
    m1, m2 = gain_design(st)
    return GainCache(m1, m2, gtime, gstat)
end
rohandahale commented 1 year ago

This is included in the new docs https://ptiede.github.io/Comrade.jl/dev/ and not the old docs https://ptiede.github.io/Comrade.jl/stable/