/* Copyright (C) 1995 by Thomas Glen Smith. All Rights Reserved. */ /* factorlx APL2 V1.0.0 ************************************************ * Factorial (gamma) for complex numbers. * ***********************************************************************/ #define INCLUDES 0 #include "includes.h" void factorlx(carg,cans) double *carg,*cans; { Gammax; gammax(carg,cans,1); return; }