I have a very long double array (>10000) that has read data from a datafile. I want to convert it into std::vector to be able to use some relevant functions.
Is there any better and efficient way to do it than copying each data one by one?
Thanks in advance.