フィルターのクリア

Integrate in time domain

2 ビュー (過去 30 日間)
Sreet Swastik
Sreet Swastik 2013 年 3 月 28 日
I have a function named Kp*e... How do I integrate it in MATLAB say from 0 to 5?

回答 (1 件)

Mahdi
Mahdi 2013 年 3 月 28 日
You can use the int(expr,var,a,b) function.
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
Sreet Swastik 2013 年 3 月 28 日
int(Kp*e, e, 0,5)
??? Undefined function or method 'int' for input arguments of type 'double'
This is the error when I do it!
Mahdi
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)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by