trader_mult

(PECL trader >= 0.2.0)

trader_multVector Arithmetic Mult

설명

array trader_mult ( array $real0 , array $real1 )

Calculates the vector dot product of real0 with real1 and returns the resulting vector.

인수

real0

Array of real values.

real1

Array of real values.

반환값

Returns an array with calculated data or false on failure.

add a note add a note

User Contributed Notes 1 note

up
0
geekgirl dot joy at gmail dot com
3 years ago
<?php

$result
= trader_mult([1,2,3,4,5], [6,7,8,9,10]);

var_dump($result);
/*
array(5) {
  [0]=>
  float(6)  // 1 * 6
  [1]=>
  float(14) // 2 * 7
  [2]=>
  float(24) // 3 * 8
  [3]=>
  float(36) // 4 * 9
  [4]=>
  float(50) // 5 * 10
}
*/
To Top