I cannot generate C code from MATLAB Coder
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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;
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/378191/image.png)
Here, you find how I stored the integral yint into yr
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/378896/image.png)
9 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!