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