optimize parameters of iterative simulink calls
조회 수: 3 (최근 30일)
이전 댓글 표시
I have a matlab code that use experimental data inputs to run simulink file iteratively.
when collecting the outputs of the simulink i have to make parameter estimation comparing to experimental data with simulated data from all iterationss.
The process of parameter estimation is clear when there is one simulink call (example: using simulink app parameter estimation)
But in my case when iterating simulink block it is not possible to do so. Is there any suggestion or alternatif ?
for i=1:length(Experimental-Data.S)
S = Experimental-Data.S(i);
T = Experimental-Data.T(i);
sim('PandO_MPPT_PeEbuilt_modified');
답변 (1개)
Adarsh
2025년 4월 1일
You can refer to the following MATLAB Answer link for parameter estimation for multiple runs using GUI:
If your goal is to perform parameter estimation programmatically then you can refer to the following documentation link:
I hope it helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Parameter Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!