필터 지우기
필터 지우기

How to define Proportional Integral (PI) controller as a function (from script), to generate C code?

조회 수: 2 (최근 30일)
The general form of PI controller is Kp+ Ki/S (laplace).
I used this following code:
function s=controller(kp,ki)
s = tf([kp ki],[1 0])
but when I convert it into C code, I get this error:
The 'tf' class does not support code generation.
I need to code PI controller in C language, Do you have any suggestion to solve the problem?
Thank you

답변 (0개)

카테고리

Help CenterFile Exchange에서 Semiconductors and Converters에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by