フィルターのクリア

How to simplify a complex matrix

1 回表示 (過去 30 日間)
sakshi ahuja
sakshi ahuja 2016 年 3 月 28 日
回答済み: Walter Roberson 2016 年 3 月 28 日
I am having a polynomial matrix as an e.g.,
A= [1, 0; 0, ((2098771722748011756657413967615*z^2)/2535301200456458802993406410752 - (7700501052346207801164205137339*z)/5070602400912917605986812821504 - 10387006882955487611545293966533/20282409603651670423947251286016]

採用された回答

Walter Roberson
Walter Roberson 2016 年 3 月 28 日
When you enter numbers like that, they will be converted to double precision, which does not have enough precision for you. You need to change the numbers to symbolic.
syms z
A = [1, 0; 0, ((sym('2098771722748011756657413967615')*z^2) / sym('2535301200456458802993406410752') - (sym('7700501052346207801164205137339')*z) / sym('5070602400912917605986812821504') - sym('10387006882955487611545293966533/20282409603651670423947251286016')]

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumber Theory についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by