randMatrixBench   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A randn() 0 2 1
1
<?php
2
3
namespace Np\benchmarks\matrix\random;
4
5
use Np\matrix;
6
7
/**
8
 * @Groups({"Random"})
9
 */
10
class randMatrixBench {
11
12
    /**
13
     * @Subject
14
     * @Iterations(5)
15
     * @revs(5)
16
     * @OutputTimeUnit("seconds", precision=3)
17
     */
18
    public function randn(): void {
19
        matrix::randn(500, 500);
20
    }
21
22
}
23