what replace old function ltipack.checkABCDE
이전 댓글 표시
in an old m file I used the function ltipack.checkABCDE for lti model.
This function is not recognized by 2024 Matlab version.
I would like to know what replaced this function.
댓글 수: 2
Ayush Singh
2024년 6월 20일
Hi Yehuda,
May i know which version were you using before where the function was working fine and maybe possible, share that part of 'm' file where the function is used?
Yehuda
2024년 6월 24일
답변 (1개)
Hello Yehuda
From what I understand, you are trying to use “ltipack.checkABCDE” function in a MATLAB file that was running in an older release but is not supported in R2024a.
Based on my investigation, the “checkABCDE” function is accessible as a function under ‘ss’ class and not under ‘ltipack’ package. It is not an object function and should not be called using an object of the ‘ss’ class.
Kindly follow the code snippet below to use the “checkABCDE” function in R2024a.
A = [-1.5,-2;1,0];
B = [0.5;0];
C = [0,1];
D = 0;
sys = ss(A,B,C,D)
R = ss.checkABCDE(A,'A')
I hope you find the above explanation and suggestions useful!
카테고리
도움말 센터 및 File Exchange에서 Simulink에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!