I want to take modulus of complex number in polar coordinates in matlab .

1 view (last 30 days)
For examle how to calculate mod of 1+ a cos(theta)+ i asin(theta) on matlab

Answers (1)

Bjorn Gustavsson
Bjorn Gustavsson on 10 Aug 2021
The only definition of modulus of a complex number I can find is what is done with the abs-function. In that case you simlpy do:
z = 1+a*cos(theta) + 1i*a*sin(theta); % using 1i to make sure it is the imaginary unit.
abs(z)
Here I also assumed that you wanted a*sin(theta) and not 1i*asin(theta)
HTH
  2 Comments
bushra kanwal
bushra kanwal on 11 Aug 2021
but it gives only the symbol of modulus. this syntax does not provide calculated modulus
Bjorn Gustavsson
Bjorn Gustavsson on 11 Aug 2021
No it doesn't:
a = 12;
theta = sqrt(2);
z = 1+a*cos(theta) + 1i*a*sin(theta); % using 1i to make sure it is the imaginary unit.
abs(z)
ans =
12.1960
As it should. If you're working with symbolic variables then that's another case which you might not get further, but why bother about that, you know what it should be and can simply replace (see help and documentation for subs) it when necessary.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!