0

I am writing a speech enhancement app for android. I have a few matrices and vectors that were created from a training code that ran in MATLAB they are saved as csv files .For the app to run the speech enhancement Alg. it needs to open these files and convert them to to arrays and 2d arrays.How can I attach these files to the andriod project to make this possible? (BTW I am working in Eclipse).

infused
  • 24,000
  • 13
  • 68
  • 78
Hillel
  • 301
  • 1
  • 11
  • You are going to parse your csv files. [Here is an example](http://stackoverflow.com/q/5360628/655987). Creation of your arrays is up to you. If you want a more detailed explanation, try giving more information about you data and share your work. – yildirimyigit Aug 22 '14 at 13:32

1 Answers1

0

You can place them in the assets folder and then use AssetManager to get the files InputStream inputStream = AssetManager.open(String fileName)

hoomi
  • 1,882
  • 2
  • 16
  • 17