Problem with abs()
Mostra commenti meno recenti
So i have a function which i plot that looks like this
f(x)= (1i*omega*mueh)*(2*d^3/3*1000/(pi*120))*(-(i *(x - x1)* exp(-i* k* sqrt((x - x1)^2 + (y - y1)^2 + (z - z1)^2))* (k* sqrt((x - x1)^2 + (y - y1)^2 + (z - z1)^2) - i))/(4* pi *((x - x1)^2 + (y - y1)^2 + (z - z1)^2)^(3/2)))
It is a function for an the z component of an electric field. I now need the absolut value of that field. Here comes the kicker.
I get two different results. Its different between abs() and doing sqrt(a^2+b^2). So it seems like i dont really know enough about abs() or what it really does. I though i should get the same result. can someone enlighten me so i dont fall for this again?

I Attached my script. There is a lot going on. Its basicly a superpositon of the values.
The important lines are 136 and 138
4 Commenti
Torsten
il 25 Ott 2017
Please show the code you are using for the plot.
Best wishes
Torsten.
Walter Roberson
il 25 Ott 2017
Not is not clear what your a and b are for this purpose?
Patrick Philipiak
il 25 Ott 2017
Modificato: Patrick Philipiak
il 25 Ott 2017
Risposte (1)
KSSV
il 25 Ott 2017
0 voti
abs gives you a positive value always if you input a number. It gives you sqrt(Real^2+imaginary^2) if you input a a complex number.
Categorie
Scopri di più su Programming in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!