Reputation: 2301
I am just wondering if if this is possible? I found this board:
http://www.altera.com/products/devkits/altera/kit-cyc2-2C20N.html
There is no mention of Matlab support. Either way, Thanks
Upvotes: 1
Views: 569
Reputation: 409
Interfacing with Matlab is not specific to FPGA board, but FPGA design tools (synthesis and place & route). Both major FPGA vendors - Xilinx and Altera - support Matlab. Xilinx in its System Generator, and Altera in its DSP Builder. The design flow is approximately as follows:
You write your Matlab code, given the restrictions of FPGA tools and FPGA device you're targeting. For example FPGA devices have limited amount of memory, few KByte to few MByte, depending on the device.
You compile your Matlab code. Under the hood the code will be converted to a hardware description language.
FPGA tools will synthesize and place & route the code and generate a bitstream
You program the bitstream into your FPGA.
Upvotes: 4