Esempio n. 1
0
func (p *Plan) Execute() *Plan {
	C.fftw_execute(p.fftw_p)
	return p
}
Esempio n. 2
0
File: fftw.go Progetto: delfvad/hi
// Execute the plan
func (p *Plan) Execute() {
	p.Lock()
	defer p.Unlock()
	C.fftw_execute(p.fftwP)
}
Esempio n. 3
0
func (p *Plan) Execute() {
	C.fftw_execute(p.fftw_p)
}