This commit is contained in:
Gaspard Jankowiak 2025-02-10 12:08:26 +01:00
commit 76136dbc05
7 changed files with 303 additions and 0 deletions

15
test/runtests.jl Normal file
View file

@ -0,0 +1,15 @@
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")