1 '\" te 2 .\" Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved. 3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. 4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. 5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] 6 .TH vexp_ 3MVEC "14 Dec 2007" "SunOS 5.11" "Vector Math Library Functions" 7 .SH NAME 8 vexp_, vexpf_ \- vector exponential functions 9 .SH SYNOPSIS 10 .LP 11 .nf 12 cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-lmvec\fR [ \fIlibrary\fR\&.\|.\|. ] 13 14 \fBvoid\fR \fBvexp_\fR(\fBint *\fR\fIn\fR, \fBdouble * restrict\fR \fIx\fR, \fBint *\fR\fIstridex\fR, 15 \fBdouble * restrict\fR \fIy\fR, \fBint *\fR\fIstridey\fR); 16 .fi 17 18 .LP 19 .nf 20 \fBvoid\fR \fBvexpf_\fR(\fBint *\fR\fIn\fR, \fBfloat * restrict\fR \fIx\fR, \fBint *\fR\fIstridex\fR, 21 \fBfloat * restrict\fR \fIy\fR, \fBint *\fR\fIstridey\fR); 22 .fi 23 24 .SH DESCRIPTION 25 .sp 26 .LP 27 These functions evaluate the function \fBexp\fR(\fIx\fR) for an entire vector 28 of values at once. The first parameter specifies the number of values to 29 compute. Subsequent parameters specify the argument and result vectors. Each 30 vector is described by a pointer to the first element and a stride, which is 31 the increment between successive elements. 32 .sp 33 .LP 34 Specifically, \fBvexp_\fR(\fIn\fR, \fIx\fR, \fIsx\fR, \fIy\fR, \fIsy\fR) 35 computes \fIy\fR[\fIi\fR * *\fIsy\fR] = \fBexp\fR(\fIx\fR[\fIi\fR * *\fIsx\fR]) 36 for each \fIi\fR = 0, 1, ..., *\fIn\fR - 1. The \fBvexpf_()\fR function 37 performs the same computation for single precision data. 38 .sp 39 .LP 40 These functions are not guaranteed to deliver results that are identical to the 41 results of the \fBexp\fR(3M) functions given the same arguments. 42 Non-exceptional results, however, are accurate to within a unit in the last 43 place. 44 .SH USAGE 45 .sp 46 .LP 47 The element count *\fIn\fR must be greater than zero. The strides for the 48 argument and result arrays can be arbitrary integers, but the arrays themselves 49 must not be the same or overlap. A zero stride effectively collapses an entire 50 vector into a single element. A negative stride causes a vector to be accessed 51 in descending memory order, but note that the corresponding pointer must still 52 point to the first element of the vector to be used; if the stride is negative, 53 this will be the highest-addressed element in memory. This convention differs 54 from the Level 1 BLAS, in which array parameters always refer to the 55 lowest-addressed element in memory even when negative increments are used. 56 .sp 57 .LP 58 These functions assume that the default round-to-nearest rounding direction 59 mode is in effect. On x86, these functions also assume that the default 60 round-to-64-bit rounding precision mode is in effect. The result of calling a 61 vector function with a non-default rounding mode in effect is undefined. 62 .sp 63 .LP 64 On SPARC, the \fBvexpf_()\fR function delivers +0 rather than a subnormal 65 result for arguments in the range -103.2789 <= \fIx\fR <= -87.3365. Otherwise, 66 these functions handle special cases and exceptions in the same way as the 67 \fBexp()\fR functions when \fBc99\fR \fBMATHERREXCEPT\fR conventions are in 68 effect. See \fBexp\fR(3M) for the results for special cases. 69 .sp 70 .LP 71 An application wanting to check for exceptions should call 72 \fBfeclearexcept\fR(\fBFE_ALL_EXCEPT\fR) before calling these functions. On 73 return, if \fBfetestexcept\fR(\fBFE_INVALID\fR | \fBFE_DIVBYZERO\fR | 74 \fBFE_OVERFLOW\fR | \fBFE_UNDERFLOW\fR) is non-zero, an exception has been 75 raised. The application can then examine the result or argument vectors for 76 exceptional values. Some vector functions can raise the inexact exception even 77 if all elements of the argument array are such that the numerical results are 78 exact. 79 .SH ATTRIBUTES 80 .sp 81 .LP 82 See \fBattributes\fR(5) for descriptions of the following attributes: 83 .sp 84 85 .sp 86 .TS 87 tab() box; 88 cw(2.75i) |cw(2.75i) 89 lw(2.75i) |lw(2.75i) 90 . 91 ATTRIBUTE TYPEATTRIBUTE VALUE 92 _ 93 Interface StabilityCommitted 94 _ 95 MT-LevelMT-Safe 96 .TE 97 98 .SH SEE ALSO 99 .sp 100 .LP 101 \fBexp\fR(3M), \fBfeclearexcept\fR(3M), \fBfetestexcept\fR(3M), 102 \fBattributes\fR(5)