Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 422 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 422 Bytes

Hilbert.jl

master: master v1.0: v1.0

Compute the Hilbert transform of a signal in Julia.

julia> using Hilbert

julia> signal = [1 2 3 4]
1×4 Array{Int64,2}:
 1  2  3  4

julia> hilbert(signal)
1×4 Array{Complex{Float64},2}:
 1.0+1.0im  2.0-1.0im  3.0-1.0im  4.0+1.0im