mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Use magnitude to compute dB #92
This commit is contained in:
parent
757aab9078
commit
d6cc945b17
@ -228,7 +228,8 @@ void Marker::createText()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
double val = qucs::num2db(fabs(*pz),ax->Units);
|
double mag = sqrt(pz[0]*pz[0] + pz[1]*pz[1]);
|
||||||
|
double val = qucs::num2db(mag,ax->Units);
|
||||||
Text += QString::number(val,'g',Precision);
|
Text += QString::number(val,'g',Precision);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user