matlab code for hdl conversion

2 ビュー (過去 30 日間)
srinivasan ravi
srinivasan ravi 2018 年 11 月 18 日
回答済み: Kiran Kintali 2023 年 10 月 7 日
hello, i have wriiten a matlab code which i need to convert into hdl code but it is not supporting for hdl conversion. is there any source that i can learn how to write code that supports hdl conversion? please help with my code. what could be done in this code for hdl support.
function result_k1= tryf_fixpt(sout2)
%#codegen
window_width=50;
result_k1=zeros(1,200);
for j=1:170
window_m1=sout2((j:window_width+(j-1)));
window_m11=window_m1(:);
result_k1(j)=skewness(window_m11);
end

回答 (1 件)

Kiran Kintali
Kiran Kintali 2023 年 10 月 7 日
HDLCoder Design Patterns and Examples
This link has several tutorials in this submission show how to generate HDL from MATLAB code,
>> mlhdlc_demo_setup('heq')
Generate HDL Code from MATLAB algorithms; you can follow these doc links for additional info..

カテゴリ

Help Center および File ExchangeHDL Coder についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by