Importing array onto Arduino

Hello,

I am trying to test a filter that I have implemented on MATLAB on my Arduino Uno. I have an array of 100000 numbers that I want to send to the Arduino (so that I don't have to type it) so that I can run the filtering algorithm. However, everywhere I look, I haven't found anything.

Please help...

However, everywhere I look, I haven't found anything.

It's always in the last place you look.
Look there first.

AWOL:

However, everywhere I look, I haven't found anything.

It's always in the last place you look.
Look there first.

Nice suggestion :stuck_out_tongue:

Appreciate it...

herman_pretorius:
Hello,

I am trying to test a filter that I have implemented on MATLAB on my Arduino Uno. I have an array of 100000 numbers that I want to send to the Arduino (so that I don't have to type it) so that I can run the filtering algorithm. However, everywhere I look, I haven't found anything.

Please help...

I don't think 100000 numbers will fit into 2K of RAM.

They might fit on an SD card though...

I can desample the amount that I have. I am just unsure of how to get the numbers onto the Arduino

Either via the serial interface, or from an array held in program memory.

I'd first type Matlab inside the upper right search box.

Also typing matlab arduino shows the playground section "interfacing with matlab" on this very site as first result.

That should give you a starting point...