i have a matlab output data with more than 600,000 rows and 4 columns.
i want to read this file by C++ and put it in same array for next data processing, while i don't know how can i do it. please introduce me for doing it.
2. What does "in same array" mean in this context?
3. Do I understand correctly that you have to compute something from a table of data and in order to do that you need to retrieve the table. You have to compute with means other than Matlab?
2. i want that C++ reads my file and put it in an array (600,000 rows and 4 columns)
3. i ran my code on matlab ago, but it was very slow because matlab works only with single processor.
therefore i decide to do it by C++, however i don't know how can i import data in C++ and save the result in the out put file.