(Last Changed on May
24,
2022 for git-revision 737ad378036b5b0581ef78c3ce5a7d53af77d244.)
Go to the source code of this file.
|
class | ivector |
| Array of integers(int) with indexes from index_min to indexmax. More...
|
|
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.
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 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.
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.