1 libmvec(3LIB) Interface Libraries libmvec(3LIB) 2 3 4 5 NAME 6 libmvec - vector math library 7 8 SYNOPSIS 9 cc [ flag... ] file... -lmvec [ library... ] 10 11 12 DESCRIPTION 13 This library contains function to evaluate common mathematical 14 functions for several arguments at once. The argument values are 15 specified by one or more vectors (arrays) of data, and the 16 corresponding result values are stored in another vector. 17 18 INTERFACES 19 The shared object libmvec.so.1 provides the public interfaces defined 20 below. See Intro(3) for additional information on shared object 21 interfaces. 22 23 24 25 26 vatan_ vatanf_ 27 vatan2_ vatan2f_ 28 vc_abs_ vc_exp_ 29 vc_log_ vc_pow_ 30 vcos_ vcosf_ 31 vcospi_ vcospif_ 32 vexp_ vexpf_ 33 vhypot_ vhypotf_ 34 vlog_ vlogf_ 35 vpow_ vpowf_ 36 vrhypot_ vrhypotf_ 37 vrsqrt_ vrsqrtf_ 38 vsin_ vsinf_ 39 vsincos_ vsincosf_ 40 vsincospi_ vsincospif_ 41 vsinpi_ vsinpif_ 42 vsqrt_ vsqrtf_ 43 vz_abs_ vz_exp_ 44 vz_log_ vz_pow_ 45 46 47 FILES 48 /lib/libmvec.so.1 49 shared object 50 51 52 /lib/64/libmvec.so.1 53 64-bit shared object 54 55 56 ATTRIBUTES 57 See attributes(5) for descriptions of the following attributes: 58 59 60 61 62 +----------------------------+-----------------------------+ 63 | ATTRIBUTE TYPE | ATTRIBUTE VALUE | 64 +----------------------------+-----------------------------+ 65 |MT-Level | MT-Safe | 66 +----------------------------+-----------------------------+ 67 68 SEE ALSO 69 Intro(3), complex.h(3HEAD), libm(3LIB), attributes(5) 70 71 72 73 February 27, 2020 libmvec(3LIB)