c++中如何实现补余差函数erfc,例如式子BER=(1/2)*erfc(Q)
发布网友
发布时间:2022-05-01 02:18
我来回答
共1个回答
热心网友
时间:2022-06-22 09:53
编写如下:
function erfc(x)
%wrong
syms t;
y=exp(-t^2);
out=int(y,t,x,inf);
out=2*out/sqrt(pi)
clear t
===
输入:erfc(0.1)
out =
2251799813685248/3991211251234741*pi^(1/2)-2251799813685248/3991211251234741*pi^(1/2)*erf(1/10)