home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / c / math_classes.lha / math_classes / matrix / libmatrix / mat_dabs.cc < prev    next >
Encoding:
Text File  |  1996-09-19  |  51 b   |  5 lines

  1. double abs(double a)
  2.     {
  3.     return (a>0 ? a : -a);
  4.     }
  5.