This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
Replies: 1 comment 1 reply
-
Hey! Yes, that would be the way. Do note that this discards nullability information. Consider using Creating a new vector is required because of the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! Thanks for the package!
I am trying to replicate complex numbers in Arrow using a FixedSizeListArray of 2 arrays. The thing is, I need to use
rustfft
crate to get the fft of thisFixedSizeListArray
butrustfft
only accepts&mut [Complex<T>]
types as input. So I ended up thinking of converting theFixedSizeListArray
to aVec<Complex<f64>>
.Vec
the way to go or do you suggest something more efficient? I am not very used to Arrow.Vec
from aFixedSizeListArray
?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions