How to use erfc(x) function to get the complementary error function at x in Python

2 Answers

0 votes
import math

print(math.erfc(0.25))


'''
run:

0.7236736098317631

'''

 



answered Oct 12, 2017 by avibootz
0 votes
import math

print(math.erfc(-0.25))


'''
run:

1.276326390168237

'''

 



answered Oct 12, 2017 by avibootz
...