import
This commit is contained in:
commit
76136dbc05
7 changed files with 303 additions and 0 deletions
15
test/runtests.jl
Normal file
15
test/runtests.jl
Normal 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")
|
||||
Loading…
Add table
Add a link
Reference in a new issue