[installation] Change to nightly
This commit is contained in:
@ -42,7 +42,7 @@ void fft(ComplexArray &spec, int n, const T *data);
|
||||
|
||||
template <typename T>
|
||||
void fft(ComplexArray &spec, const std::vector<T> &data) {
|
||||
fft(spec, static_cast<int>(data.size()), &data[0]);
|
||||
fft(spec, static_cast<int>(data.size()), data.data());
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
@ -65,17 +65,17 @@ void ifft(int n, T *out, ComplexArray &spec);
|
||||
|
||||
template <typename T>
|
||||
void ifft(std::vector<T> &out, ComplexArray &spec) {
|
||||
ifft(static_cast<int>(out.size()), &out[0], spec);
|
||||
ifft(static_cast<int>(out.size()), out.data(), spec);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
void ifft(TypedArray<T> &out, ComplexArray &spec) {
|
||||
ifft(out.impl(), &out[0], spec);
|
||||
ifft(out.impl(), spec);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
void ifft(TypedArray<T> &out, Seiscomp::ComplexDoubleArray &spec) {
|
||||
ifft(out.impl(), &out[0], spec.impl());
|
||||
ifft(out.impl(), spec.impl());
|
||||
}
|
||||
|
||||
inline void ifft(DoubleArray &out, Seiscomp::ComplexDoubleArray &spec) {
|
||||
|
||||
Reference in New Issue
Block a user