Integrate in time domain
이전 댓글 표시
I have a function named Kp*e... How do I integrate it in MATLAB say from 0 to 5?
답변 (1개)
Mahdi
2013년 3월 28일
So in your case, it would be
syms e Kp
int(Kp.*e, e, 0,5)
The result would be 25.*Kp/2. You can obviously play around with this by setting Kp to a value, and so on...
댓글 수: 2
Sreet Swastik
2013년 3월 28일
Mahdi
2013년 3월 28일
Did you use the line before it? You need syms e Kp fo this to work. (Sets Kp as a symbol). You can also do this for example:
Kp=4.4 % A number I chose
syms e
int(Kp.*e, e, 0,5)
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!