What is the Fixed-Point function replacement for atan?

2 ビュー (過去 30 日間)
priya agarwal
priya agarwal 2014 年 1 月 15 日
回答済み: Paul Bayendang 2014 年 4 月 11 日
I am converting my matlab function to vhdl. What is the function replacement for atan so that it can be converted to fixed point? And also another error is reported. error : Undefined function or variable 'epsilon_out'. The first assignent to a local variable determines its class. how to remove this.

採用された回答

Tim McBrayer
Tim McBrayer 2014 年 1 月 15 日
The list of functions supported for HDL code generation is in the HDL Coder documentation. As you have discovered, atan and atan2 are not supported. If you know your input range you can build a lookup table to approximate a function to a suitable precision.
The error message mentioning epsilonout is simply due to the presence of the earlier errors. Once you have valid implementations/replacements for atan and atan2, you won't encounter any issue with epsilonout.
  2 件のコメント
priya agarwal
priya agarwal 2014 年 1 月 15 日
thank you. I'll try to build a lookup table.
priya agarwal
priya agarwal 2014 年 1 月 23 日
編集済み: priya agarwal 2014 年 1 月 23 日
I made the lookup table in simulink. But how do I call this simulink block in my Matlab function?

サインインしてコメントする。

その他の回答 (2 件)

Bharath Venkataraman
Bharath Venkataraman 2014 年 1 月 20 日
You can also try using cordicatan2, which gives you a CORDIC based inverse tangent value.

Paul Bayendang
Paul Bayendang 2014 年 4 月 11 日
1) Also figuring a work around for atan function
2) atan2 function is supported, as far as r2012a

カテゴリ

Help Center および File ExchangeCode Generation についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by