예제 #1
0
파일: plan.go 프로젝트: jvlmdr/go-fftw
func (p *Plan) Destroy() {
	C.fftw_destroy_plan(p.fftw_p)
}
예제 #2
0
파일: fftw.go 프로젝트: delfvad/hi
// Destroy the plan
func (p *Plan) Destroy() {
	p.Lock()
	defer p.Unlock()
	C.fftw_destroy_plan(p.fftwP)
}
예제 #3
0
func destroyPlan(p *Plan) {
	C.fftw_destroy_plan(p.fftw_p)
}