How to derive Q-factor from BER?
24 views (last 30 days)
Show older comments
I have BER = 0.5 * Erfc(Q / sqrt(2))
How can I derive Q from this formula? I tried solve command, but get {Empty sym: 0-by-1} error?
0 Comments
Answers (1)
Priyanshu Mishra
on 19 May 2020
Hi Alina,
Since I do not have your code, I have written a small code. You may refer to it:
ber = 2*10^-4
syms ber Q
eqn = 0.5*erfc(Q/sqrt(2))
Q = vpasolve(eqn,Q)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!