How to get the modulus of complex symbolic expression?

조회 수: 10 (최근 30일)
Raptrick
Raptrick 2017년 11월 15일
댓글: Raptrick 2017년 11월 15일
Dear all,
I want to calculate the modulus of complex symbolic expression but I do not get explicit results:
syms a b;
assume(a>0);
assume(b>0);
z = a + sqrt(-1)*b;
zabs = abs(z)
Results in:
zabs =
abs(a + b*1i)
I was expecting zabs = (a^2 +b^2)^(1/2). How do I get the result I want?
Patrick

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 15일
rewrite(zabs, sqrt)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by