필터 지우기
필터 지우기

LQR and c2d not available with matlab coder.

조회 수: 13 (최근 30일)
Dean Montgermy
Dean Montgermy 2020년 3월 4일
답변: Vibhav 2024년 7월 12일 16:51
Hi,
i have a matlab code with LQR and c2d function in it but matlab coder doesn't support those functions.
What is the best way to fix this? I search on the internet for the full written matlab algorithms of LQR and c2d but i couldn't find it..
thanks in advance!

답변 (2개)

Darshan Ramakant Bhat
Darshan Ramakant Bhat 2020년 3월 4일
Unfortunately these two functions are not supported C/C++ code generation yet. I have made an internal request to support these functions in one of the future release.
The way to fix is to re-write the algorithm in MATLAB using the constructs / functions supported for code generation. You can refer to the below example document :
Hope this will help you.
  댓글 수: 1
soepblik
soepblik 2020년 3월 4일
Hmm no this doesn’t answer my question. Is there a full written out function of lqr and c2d which i can use then instead?

댓글을 달려면 로그인하십시오.


Vibhav
Vibhav 2024년 7월 12일 16:51
I had the same issue where I wanted to generate code for a function that was using c2d, but was failing since c2d doesn't support code generation (very weird that it doesn't given that it is a simple function). I was able to circumvent the issue by simply looking at the source code for the c2d function and replacing it directly in my code. You can view the available source code for any MATLAB function by running
>> edit <function_name>
in the command window (in this case >> edit c2d). Alternatively, although I haven't tried this myself, you could try adding the codegen pragma %#codegen to your local copy of c2d and see if that works for code generation. Note that these are basically hacks and may be unreliable. For reliability, it is best to wait for MathWorks to add codegen functionality to these functions.
Unfortunately, this seems to not be possible for the lqr function since it has dependencies on other functions in the control systems toolbox (although you could still try the codegen pragma hack and see if that works).

카테고리

Help CenterFile Exchange에서 Deep Learning with GPU Coder에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by