Add missing snippets for erf/erfc/lgamma functions.

This commit is contained in:
Gael Guennebaud 2015-12-30 15:12:15 +01:00
parent 16dd82ed51
commit b84cefe61d
3 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,2 @@
Array4d v(-0.5,2,0,-7);
cout << v.erf() << endl;

View File

@ -0,0 +1,2 @@
Array4d v(-0.5,2,0,-7);
cout << v.erfc() << endl;

View File

@ -0,0 +1,2 @@
Array4d v(0.5,10,0,-1);
cout << v.lgamma() << endl;