rand.Seed(0)
obj := WaveInit("bior3.5")
defer obj.Free()
input := make([]float64, 256)
for idx := range input {
input[idx] = rand.Float64()
}
wt := WTInit(obj, "swt", 256, 1)
defer wt.Free()
SetWTConv(wt, "direct")
SWT(wt, input)
for _, value := range wt.Output() {
fmt.Printf("%g\n", value)
}
output := make([]float64, 256)
ISWT(wt, output)
diff := make([]float64, 256)
for i := 0; i < wt.SigLength(); i++ {
diff[i] = output[i] - input[i]
}
fmt.Printf("\n MAX %g \n", absMax(diff))
WTSummary(wt)
-
Notifications
You must be signed in to change notification settings - Fork 0
Go bindings for C library "wavelib"
License
xaionaro-go/wavelib
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Go bindings for C library "wavelib"
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published