about save factor a constant problem!!

1 回表示 (過去 30 日間)
tony kevine
tony kevine 2015 年 2 月 26 日
コメント済み: Star Strider 2015 年 2 月 27 日
there is a const(1/4),i want to take it out,but i am a new user in matlab.i can't.i used the command factor,but it doesn't work!!
can anyone help me

採用された回答

Star Strider
Star Strider 2015 年 2 月 26 日
編集済み: Star Strider 2015 年 2 月 26 日
One option is to use numden:
syms Zta
Q = [(1/4 + 1/4*Zta) (1/4 - 1/4*Xi)]/(1/4)
[N,D] = numden(Q)
produces:
N =
[ Zta + 1, 1 - Xi]
D =
[ 4, 4]
Another option is to simply divide whatever quantity you are referring to by (1/4).
Example:
syms Zta
Q = [(1/4 + 1/4*Zta) (1/4 - 1/4*Xi)]/(1/4)
produces:
Q =
[ Zta + 1, 1 - Xi]
  2 件のコメント
tony kevine
tony kevine 2015 年 2 月 27 日
thanks very much!!
Star Strider
Star Strider 2015 年 2 月 27 日
My pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by