File: slamch-test.c

package info (click to toggle)
insighttoolkit 3.20.1%2Bgit20120521-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 80,652 kB
  • sloc: cpp: 458,133; ansic: 196,223; fortran: 28,000; python: 3,839; tcl: 1,811; sh: 1,184; java: 583; makefile: 430; csh: 220; perl: 193; xml: 20
file content (18 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* slamch-test.c -- Written by Peter Vanroose, 9 November 2003 */
#include "v3p_netlib.h"
#include <stdio.h>

int main(void)
{
    printf("eps  = %g\n", v3p_netlib_slamch_("E", 1));
    printf("sfmin= %g\n", v3p_netlib_slamch_("S", 1));
    printf("base = %g\n", v3p_netlib_slamch_("B", 1));
    printf("prec = %g\n", v3p_netlib_slamch_("P", 1));
    printf("t    = %g\n", v3p_netlib_slamch_("N", 1));
    printf("rnd  = %g\n", v3p_netlib_slamch_("R", 1));
    printf("emin = %g\n", v3p_netlib_slamch_("M", 1));
    printf("rmin = %g\n", v3p_netlib_slamch_("U", 1));
    printf("emax = %g\n", v3p_netlib_slamch_("L", 1));
    printf("rmax = %g\n", v3p_netlib_slamch_("O", 1));
    return 0;
}