File: slamch-test.c

package info (click to toggle)
insighttoolkit 3.6.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 94,956 kB
  • ctags: 74,981
  • sloc: cpp: 355,621; ansic: 195,070; fortran: 28,713; python: 3,802; tcl: 1,996; sh: 1,175; java: 583; makefile: 415; csh: 184; perl: 175
file content (18 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (16)
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;
}