필터 지우기
필터 지우기

What is the difference between Matrix Exponential and Taylor Series?

조회 수: 2 (최근 30일)
Rock
Rock 2013년 3월 8일
Hi
I would like to know how matlab calculates Matrix Exponential (command expm()). I do understand it calculates based on Taylor Series. The question is,as to how many terms MATLAB calculates? On dealing with 2nd and higher order terms for State transition Matrix, MATLAB produces huge number matrix. Is there way to reduce the size of state transition Matrix?

답변 (1개)

Matt J
Matt J 2013년 3월 8일
편집: Matt J 2013년 3월 8일
doc expm says that it uses the Padé approximation, rather than a Taylor approximation, and gives this as a reference.
Higham, N. J., "The Scaling and Squaring Method for the Matrix Exponential Revisited," SIAM J. Matrix Anal. Appl., 26(4) (2005), pp. 1179–1193.
  댓글 수: 2
Rock
Rock 2013년 3월 8일
Thanks Matt!!
On using second order for calculation of state transition matrix using( expm()), is there way to reduce to second term approximation?
Matt J
Matt J 2013년 3월 8일
편집: Matt J 2013년 3월 8일
expmA_taylor2 = polyvalm( [0.5 1 1],A);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by