Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

scalb(3) [freebsd man page]

IEEE_TEST(3)						   BSD Library Functions Manual 					      IEEE_TEST(3)

NAME
scalb, scalbf, significand, significandf -- IEEE test functions LIBRARY
Math Library (libm, -lm) SYNOPSIS
#include <math.h> double scalb(double x, double n); float scalbf(float x, float n); double significand(double x); float significandf(float x); DESCRIPTION
These functions allow users to test conformance to IEEE Std 754-1985. Their use is not otherwise recommended. scalb(x, n) and scalbf(x, n) return x*(2**n) computed by exponent manipulation. If n is not an integer, +-infinity, or an NaN, the result is unspecified. significand(x) and significandf(x) return sig, where x := sig * 2**n with 1 <= sig < 2. significand(x) and significandf(x) are not defined when x is 0, +-infinity, or NaN. SEE ALSO
ieee(3), math(3) STANDARDS
IEEE Std 754-1985 BSD
November 6, 2005 BSD

Check Out this Related Man Page

significand(3M) 					  Mathematical Library Functions					   significand(3M)

NAME
significand, significandf, significandl - significand function SYNOPSIS
c99 [ flag... ] file... -lm [ library... ] #include <math.h> double significand(double x); float significandf(float x); long double significandl(long double x); DESCRIPTION
If x equals sig * 2^n with 1<= sig < 2, then these functions return sig. RETURN VALUES
Upon successful completion, these functions return sig. If x is either 0, +-Inf or NaN, x is returned. ERRORS
No errors are defined. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Stable | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
logb(3M), scalb(3M), attributes(5) SunOS 5.11 12 Jul 2006 significand(3M)
Man Page

6 More Discussions You Might Find Interesting

1. AIX

Capture IP Adress

hello I need for a script to capture the ip address from the connected user. I have 5 logical partitions. With "who", i have the ip adress, but only for 2 servers. Do you know another command to know the ip address of connected clients ? thank you (14 Replies)
Discussion started by: pascalbout
14 Replies

2. AIX

size of directory with ls -l

hello When i do a "ls -l" in a directory (Aix 5.3), i have the result : >ls -l total 65635864 -rw-r--r-- 1 lobi system 2559909888 Feb 20 15:06 cible5.7bdat -rw-r--r-- 1 lobi system 1020098870 Feb 20 13:06 cible6.7bdat -rw-r--r-- 1 lobi system 1544789511 Feb 20 11:06 cible9.7bdat -rw-r--r--... (2 Replies)
Discussion started by: pascalbout
2 Replies

3. AIX

add a hdiskpower in a vg

good morning I want to add a new emc disk in a vg (it is not a big volume group) but when i do it, i have the message: 0516-1162 /usr/sbin/extendvg: Warning, The Physical Partition Size of 64 requires the creation of 3200 partitions for hdiskpower48. The limitation for volume vg01 is 3048... (5 Replies)
Discussion started by: pascalbout
5 Replies

4. Programming

SOAP Client..!

Hi, Can anybody provide me a simple SOAP client in C/C++ ..? Thanks in advance....!! (1 Reply)
Discussion started by: Kattoor
1 Replies

5. AIX

dump -Tv

Hi guys, i need some help to debbug a problem related to an executable file. We I try to run it, it returns a problem related to a library (/usr/lib/libc.a(shr.o)), and when I'm not confident reading the output from dump -Tv. ./xxxxx exec(): 0509-036 Cannot load program ./xxxxx because of... (4 Replies)
Discussion started by: cecco16
4 Replies

6. Shell Programming and Scripting

Perl:: mass replacement of converting C code formats to tgmath.h

hello, i have a lot of C old code I'm updating to C11 with tgmath.h for generic math. the old code has very specific types, real and complex, like cabsl, csinhl, etc usually for simple bulk replacements i would do something simple like this perl -pi -e 's/cosl/cos/g' *.c the reference... (0 Replies)
Discussion started by: f77hack
0 Replies