2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: KoffeinFlummi
|
|
|
|
*
|
|
|
|
* Returns the Hadamard Product of two vectors.
|
|
|
|
* (x hadamard y) = [x1*y1, x2*y2, x3*y3]
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Vector 1
|
|
|
|
* 1: Vector 2
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Hadamard Product
|
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
PARAMS_2(_vector1,_vector2);
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-05-14 22:12:40 +00:00
|
|
|
private ["_newVector", "_i"];
|
|
|
|
|
2015-01-11 16:42:31 +00:00
|
|
|
_newVector = [];
|
|
|
|
|
|
|
|
for "_i" from 0 to (((count _vector1) min (count _vector2)) - 1) do {
|
2015-03-26 00:58:49 +00:00
|
|
|
_newVector pushBack ((_vector1 select _i) * (_vector2 select _i));
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_newVector
|