ACE3/addons/common/functions/fnc_hadamardProduct.sqf

29 lines
569 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
* Author: KoffeinFlummi
* Returns the Hadamard Product of two vectors.
* (x hadamard y) = [x1*y1, x2*y2, x3*y3]
*
* Arguments:
2015-09-18 14:33:53 +00:00
* 0: Vector 1 <ARRAY>
* 1: Vector 2 <ARRAY>
*
* Return Value:
2015-09-18 14:33:53 +00:00
* Hadamard Product <ARRAY>
*
* Example:
* [[0,0,0], [1,1,1]] call ace_common_fnc_hadamardProduct
*
2015-09-18 14:33:53 +00:00
* Public: Yes
*/
2015-09-18 14:33:53 +00:00
params ["_vector1", "_vector2"];
2015-05-14 22:12:40 +00:00
private _newVector = [];
2015-09-18 14:33:53 +00:00
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));
};
_newVector