ACE3/addons/common/functions/fnc_hadamardProduct.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

29 lines
569 B
Plaintext

/*
* Author: KoffeinFlummi
* Returns the Hadamard Product of two vectors.
* (x hadamard y) = [x1*y1, x2*y2, x3*y3]
*
* Arguments:
* 0: Vector 1 <ARRAY>
* 1: Vector 2 <ARRAY>
*
* Return Value:
* Hadamard Product <ARRAY>
*
* Example:
* [[0,0,0], [1,1,1]] call ace_common_fnc_hadamardProduct
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_vector1", "_vector2"];
private _newVector = [];
for "_i" from 0 to ((count _vector1 min count _vector2) - 1) do {
_newVector pushBack ((_vector1 select _i) * (_vector2 select _i));
};
_newVector