I cannot generate C code from MATLAB Coder

조회 수: 1 (최근 30일)
SimTec
SimTec 2020년 10월 12일
댓글: SimTec 2020년 10월 21일
I would like to generate C code for a PI controller, but whenever I reach this step I cannot continue any longer. I watched a video from MATLAB, but that one has testbench which I do not need here.
%#codegen
function [PIout,yint] = PI_cont(err,ki, kp,yr)
yint=ki*err+yr; % yint=ki*err/s
PIout=yint+kp*err;
Here, you find how I stored the integral yint into yr
  댓글 수: 9
SimTec
SimTec 2020년 10월 16일
Thank you, wait a moment
SimTec
SimTec 2020년 10월 21일
NOw it is working

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Coder에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by