How can matlab functions like eig, rand, cov and likewise be converted into vhdl using hdl coder?
2 次查看(过去 30 天)
显示 更早的评论
Hello, I'm working on a DSP project dealing with large random matrices. I have to use certain matlab functions like eig , rand, cov; and cannot do through traditional method because currently I'm dealing with 10x5 matrix. Kindly suggest me a way out through this.
Thank you
0 个评论
采纳的回答
Tim McBrayer
2016-7-21
None of those three functions are supported by HDL Coder, as you seem aware. Think about what you are trying to accomplish; are you really wanting to implement a random number generator in your FPGA? Perhaps the call to rand() can exist inside your testbench, and the data from it can be an input to your hardware design.
For involved matrix calculations such as eig(|) and |cov(), you will need to decompose these to the underlying algorithm. This is certainly doable, if a bit involved, and will be supported by HDL Coder. Since you are working with a fixed size array, you have the chance to optimize your implementation for the sizes involved, should the opportunity arise.
0 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!