Convert from vector of arrays to one array
Posted
by Afro Genius
on Stack Overflow
See other posts from Stack Overflow
or by Afro Genius
Published on 2010-05-07T04:44:34Z
Indexed on
2010/05/07
4:48 UTC
Read the original article
Hit count: 224
I have a vector of float arrays i.e. Vector . I want to convert this to one float array i.e. move every element in every float[] within the vector to a new float[]. Am a bit puzzled on using the Java built in method vector.toArray() to do this. Any ideas pls?
© Stack Overflow or respective owner