mirror of
https://github.com/gonum/gonum.git
synced 2025-10-07 16:11:03 +08:00
120 lines
3.4 KiB
Go
120 lines
3.4 KiB
Go
// Copyright ©2018 The Gonum Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file must be kept in sync with array_no_bound_checks.go.
|
|
|
|
//go:build bounds
|
|
// +build bounds
|
|
|
|
package fftpack
|
|
|
|
import "fmt"
|
|
|
|
// The types in array.go implement Fortran-like arrays for bootstrapping
|
|
// the implementation of the FFT functions translated from FFTPACK; they
|
|
// are column-major.
|
|
|
|
type twoArray struct {
|
|
i, j int
|
|
jStride int
|
|
data []float64
|
|
}
|
|
|
|
func newTwoArray(i, j int, data []float64) twoArray {
|
|
if len(data) < i*j {
|
|
panic(fmt.Sprintf("short data: len(data)=%d, i=%d, j=%d", len(data), i, j))
|
|
}
|
|
return twoArray{
|
|
i: i,
|
|
j: j,
|
|
jStride: i,
|
|
data: data[:i*j],
|
|
}
|
|
}
|
|
|
|
func (a twoArray) at(i, j int) float64 {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j {
|
|
panic(fmt.Sprintf("out of bounds at(%d, %d): bounds i=%d, j=%d", i, j, a.i, a.j))
|
|
}
|
|
return a.data[i+a.jStride*j]
|
|
}
|
|
|
|
func (a twoArray) atCmplx(i, j int) complex128 {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j {
|
|
panic(fmt.Sprintf("out of bounds at(%d, %d): bounds i=%d, j=%d", i, j, a.i, a.j))
|
|
}
|
|
return complex(a.data[i+a.jStride*j], a.data[i+a.jStride*j+1])
|
|
}
|
|
|
|
func (a twoArray) set(i, j int, v float64) {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j {
|
|
panic(fmt.Sprintf("out of bounds set(%d, %d): bounds i=%d, j=%d", i, j, a.i, a.j))
|
|
}
|
|
a.data[i+a.jStride*j] = v
|
|
}
|
|
|
|
func (a twoArray) setCmplx(i, j int, v complex128) {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j {
|
|
panic(fmt.Sprintf("out of bounds set(%d, %d): bounds i=%d, j=%d", i, j, a.i, a.j))
|
|
}
|
|
a.data[i+a.jStride*j] = real(v)
|
|
a.data[i+a.jStride*j+1] = imag(v)
|
|
}
|
|
|
|
func (a twoArray) add(i, j int, v float64) {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j {
|
|
panic(fmt.Sprintf("out of bounds set(%d, %d): bounds i=%d, j=%d", i, j, a.i, a.j))
|
|
}
|
|
a.data[i+a.jStride*j] += v
|
|
}
|
|
|
|
type threeArray struct {
|
|
i, j, k int
|
|
jStride, kStride int
|
|
data []float64
|
|
}
|
|
|
|
func newThreeArray(i, j, k int, data []float64) threeArray {
|
|
if len(data) < i*j*k {
|
|
panic(fmt.Sprintf("short data: len(data)=%d, i=%d, j=%d, k=%d", len(data), i, j, k))
|
|
}
|
|
return threeArray{
|
|
i: i,
|
|
j: j,
|
|
k: k,
|
|
jStride: i,
|
|
kStride: i * j,
|
|
data: data[:i*j*k],
|
|
}
|
|
}
|
|
|
|
func (a threeArray) at(i, j, k int) float64 {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j || k < 0 || a.k <= k {
|
|
panic(fmt.Sprintf("out of bounds at(%d, %d, %d): bounds i=%d, j=%d, k=%d", i, j, k, a.i, a.j, a.k))
|
|
}
|
|
return a.data[i+a.jStride*j+a.kStride*k]
|
|
}
|
|
|
|
func (a threeArray) atCmplx(i, j, k int) complex128 {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j || k < 0 || a.k <= k {
|
|
panic(fmt.Sprintf("out of bounds at(%d, %d, %d): bounds i=%d, j=%d, k=%d", i, j, k, a.i, a.j, a.k))
|
|
}
|
|
return complex(a.data[i+a.jStride*j+a.kStride*k], a.data[i+a.jStride*j+a.kStride*k+1])
|
|
}
|
|
|
|
func (a threeArray) set(i, j, k int, v float64) {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j || k < 0 || a.k <= k {
|
|
panic(fmt.Sprintf("out of bounds set(%d, %d, %d): bounds i=%d, j=%d, k=%d", i, j, k, a.i, a.j, a.k))
|
|
}
|
|
a.data[i+a.jStride*j+a.kStride*k] = v
|
|
}
|
|
|
|
func (a threeArray) setCmplx(i, j, k int, v complex128) {
|
|
if i < 0 || a.i <= i || j < 0 || a.j <= j || k < 0 || a.k <= k {
|
|
panic(fmt.Sprintf("out of bounds set(%d, %d, %d): bounds i=%d, j=%d, k=%d", i, j, k, a.i, a.j, a.k))
|
|
}
|
|
a.data[i+a.jStride*j+a.kStride*k] = real(v)
|
|
a.data[i+a.jStride*j+a.kStride*k+1] = imag(v)
|
|
}
|