(Last Changed on July
16,
2022 for git-revision f135841d1e9e036eca334761b451cbe2d797a2ba.)
Go to the source code of this file.
Author: David Fournier Copyright (c) 2008-2012 Regents of the University of California.
Returns results of adding each element of a to value.
ie results(i) = value + a(i)
- Parameters
-
Definition at line 19 of file ivec8.cpp.
Returns results of element wise adding for vectors a and b.
Note: a and b should have the same dimensions.
ie results(i) = a(i) + b(i)
- Parameters
-
Definition at line 68 of file ivec8.cpp.
Returns results of adding value to each element of vector a.
ie results(i) = a(i) + value;
- Parameters
-
Definition at line 125 of file ivec8.cpp.
Returns results of subtracting each element of a from value.
ie results(i) = value - a(i)
- Parameters
-
Definition at line 43 of file ivec8.cpp.
Returns results of element wise substracting for vectors a and b.
Note: a and b should have the same dimensions.
ie results(i) = a(i) - b(i)
- Parameters
-
Definition at line 97 of file ivec8.cpp.
Returns results of substrating value from each element of vector a.
ie results(i) = a(i) - value;
- Parameters
-
Definition at line 148 of file ivec8.cpp.