i have matlab 2011,,can i genarate vhdl and verilog code for 2d dct from it by using hdl coder
이전 댓글 표시
i have matlab 2011,,can i genarate vhdl and verilog code for 2d dct from it by using hdl coder
댓글 수: 1
Cogli
2015년 11월 30일
First I am not sure if HDL coder can generate VHDL and Verilog code. But I may point out that you can use dct instead of dct2 to ensure MATLAB coder works.
But however dct is supported, conditionally. Therefore, in some cases you can separate dct2() as dct(dct().').' to compute dct2. For example a validation code looks like
N = 10;
x = rand(N,N);
max(max(abs((dct2(x) - dct(dct(x).').'))))
from which we get
ans =
0
So, you can first use two dcts to compute dct2 instead, and then generate your code using MATLAB coder.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 HDL Coder에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!