Changeset 11248 for trunk/psLib/src/math/psBinaryOp.h
- Timestamp:
- Jan 23, 2007, 12:47:23 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psBinaryOp.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psBinaryOp.h
r4540 r11248 1 /* *@file psBinaryOp.h1 /* @file psBinaryOp.h 2 2 * 3 * @brief Provides binary functions for simple matrix and vector element operations. Functions 4 * include: 3 * @brief Provides binary functions for simple matrix and vector element operations. 4 * 5 * Functions include: 6 * Addition (+) 7 * Subtraction (-) 8 * Multiplication (*) 9 * Division (/) 10 * Power (^) 11 * Minimum (min) 12 * Maximum (max) 13 * Absolute value (abs) 14 * Exponent (exp) 15 * Natural Log (ln) 16 * Power of 10 (ten) 17 * Log (log) 18 * Sine (sin or dsin) 19 * Cosine (cos or dcos) 20 * Tangent (tan or dtan) 21 * Arcsine (asin or dasin) 22 * Arccosine (acos or dacos) 23 * Arctan (atan or datan) 5 24 * 6 * Addition (+) 7 * Subtraction (-) 8 * Multiplication (*) 9 * Division (/) 10 * Power (^) 11 * Minimum (min) 12 * Maximum (max) 13 * Absolute value (abs) 14 * Exponent (exp) 15 * Natural Log (ln) 16 * Power of 10 (ten) 17 * Log (log) 18 * Sine (sin or dsin) 19 * Cosine (cos or dcos) 20 * Tangent (tan or dtan) 21 * Arcsine (asin or dasin) 22 * Arccosine (acos or dacos) 23 * Arctan (atan or datan) 25 * Currently only vector-vector and image-image binary operations are supported. 24 26 * 25 * Currently only vector-vector and image-image binary operations are supported. 27 * @author Ross Harman, MHPCC 28 * @author Robert DeSonia, MHPCC 26 29 * 27 * @ingroup MatrixArithmetic 30 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 31 * @date $Date: 2007-01-23 22:47:23 $ 28 32 * 29 * @author Ross Harman, MHPCC 30 * @author Robert DeSonia, MHPCC 31 * 32 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 33 * @date $Date: 2005-07-12 19:12:01 $ 34 * 35 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 33 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 36 34 */ 37 35 … … 39 37 #define PSBINARY_OP_H 40 38 41 /// @addtogroup Mat rixArithmetic39 /// @addtogroup MathOps Mathematical Operations 42 40 /// @{ 43 41 … … 63 61 64 62 /// @} 65 66 63 #endif // #ifndef PSBINARY_OP_H
Note:
See TracChangeset
for help on using the changeset viewer.
