Simplifying numbers in symbolic function

조회 수: 21 (최근 30일)
David H
David H 2014년 4월 30일
댓글: Kyle Langford 2022년 2월 18일
Upon substituting into a symbolic expression I get very long analytic expressions for numbers, e.g. (2^(1/2)*(3^(1/2)*pi*(5^(1/2)/4 - 1/4)*(1/120000 + i/6000000)t + .... is there any way to simplify these numbers down to a single double precision complex number in the symbolic expression to make for easier viewing? I can't just use double (expression) as it still have a symbolic variable.
Many thanks.
David

채택된 답변

Mischa Kim
Mischa Kim 2014년 4월 30일
편집: Mischa Kim 2014년 4월 30일
David, have you tried vpa(expr)?
syms x t
x = 2^(1/2)*3^(1/2)*pi*(5^(1/2)/4 - 1/4)*(1/120000 + i/6000000)*t;
vpa(x,10) % you can adjust the number of significant digits
ans =
t*(0.00001981648468 + 0.0000003963296937*i)
  댓글 수: 3
Mr. G
Mr. G 2021년 2월 11일
편집: Mr. G 2021년 2월 11일
Great job, Thx.
It really works!
Kyle Langford
Kyle Langford 2022년 2월 18일
Thank you!

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

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by