func (p *Plan) Execute() *Plan { C.fftw_execute(p.fftw_p) return p }
// Execute the plan func (p *Plan) Execute() { p.Lock() defer p.Unlock() C.fftw_execute(p.fftwP) }
func (p *Plan) Execute() { C.fftw_execute(p.fftw_p) }