Exemple #1
0
func (p *Plan) Destroy() {
	C.fftw_destroy_plan(p.fftw_p)
}
Exemple #2
0
// Destroy the plan
func (p *Plan) Destroy() {
	p.Lock()
	defer p.Unlock()
	C.fftw_destroy_plan(p.fftwP)
}
Exemple #3
0
func destroyPlan(p *Plan) {
	C.fftw_destroy_plan(p.fftw_p)
}