Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MathNetNumerics-Exploration-2789/HeuristicLab.Algorithms.DataAnalysis.Experimental/sbart/scabs1.f @ 15540

Last change on this file since 15540 was 15457, checked in by gkronber, 7 years ago

#2789 added Finbarr O'Sullivan smoothing spline code

File size: 305 bytes
Line 
1      REAL FUNCTION SCABS1(Z)
2*     .. Scalar Arguments ..
3      COMPLEX Z
4*     ..
5*
6*  Purpose
7*  =======
8*
9*  SCABS1 computes absolute value of a complex number
10*
11*     .. Intrinsic Functions ..
12      INTRINSIC ABS,AIMAG,REAL
13*     ..
14      SCABS1 = ABS(REAL(Z)) + ABS(AIMAG(Z))
15      RETURN
16      END
Note: See TracBrowser for help on using the repository browser.