What is the syntax problem?
이전 댓글 표시
c1*(c2/u[2]-c3*u[3]-c4)*exp(-c5/u[2])+c6*u[1]
someone can help me?
댓글 수: 5
Torsten
2022년 9월 7일
Replace [ ] by ( )
Antonio Itta
2022년 9월 7일
Antonio Itta
2022년 9월 7일
I don't know what Simulink requires. As MATLAB expression, it works for me.
Maybe the unnecessary bracket around u(3) must be deleted.
syms c1 c2 c3 c4 c5 c6
u = [2 4 6]
c1*(c2/u(2)-c3*(u(3))-c4)*exp(-c5/u(2))+c6*u(1)
Star Strider
2022년 9월 7일
u = @(t) t>=0;
Also, it may be necessary to use element-wise operations. See: Array vs. Matrix Operations for details.
.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Formula Manipulation and Simplification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

