File: slamch-test.c

package info (click to toggle)
insighttoolkit 3.18.0-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 110,432 kB
  • ctags: 74,559
  • sloc: cpp: 412,627; ansic: 196,210; fortran: 28,000; python: 3,852; tcl: 2,005; sh: 1,186; java: 583; makefile: 458; csh: 220; perl: 193; xml: 20
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;
}