How to solve this equation S= integrate(​(1-2*x).^2​)./((x-x.^​2).^2)) dt

I want to solve this integration for time where t= 0:1

1 件のコメント

Alberto
Alberto 2014 年 9 月 25 日
By the way, you should check the variables in your function, and the integration variable. I assumed dt really meant dx to you.

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

回答 (1 件)

Alberto
Alberto 2014 年 9 月 25 日

1 投票

This is how you should try:
syms x
f=((1-2*x).^2)/( (x-x.^2).^2 )
int(f)
ans =
2*log(x - 1) - 2*log(x) + (2*x - 1)/(- x^2 + x)
int(f,0,1)
ans =
Inf

2 件のコメント

Avan Al-Saffar
Avan Al-Saffar 2014 年 9 月 25 日
Dear Alberto
Many thanks but I want to ask you if you noticed that I want to integrate for (t) not for (x) !
Alberto
Alberto 2014 年 9 月 25 日
I've notices, i just thought it was a typo. Do this then:
syms x t
f=((1-2*x).^2)/( (x-x.^2).^2 )
int(f,t,0,1)
ans =
(2*x - 1)^2/(x - x^2)^2

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

カテゴリ

ヘルプ センター および File ExchangePhysics についてさらに検索

タグ

質問済み:

2014 年 9 月 25 日

コメント済み:

2014 年 9 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by