TaylorTest/test/runtests.jl
2025-02-10 12:08:26 +01:00

15 lines
298 B
Julia
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Test: @test, @testset
import TaylorTest
import SpecialFunctions: erf
function gauss(p::Vector{Float64}; x::Float64=0.0)
λ, μ, σ = p
return λ / sqrt(2π * σ^2) * exp(-((x - μ) / σ)^2)
end
include("trig_functions.jl")
include("gauss.jl")
include("erf.jl")
include("tensors.jl")