mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 08:52:08 +01:00
7 lines
119 B
PHP
7 lines
119 B
PHP
<?php
|
|
$np = PyCore::import('numpy');
|
|
|
|
$rs = $np->floor($np->random->random([3, 4])->__mul__(10));
|
|
|
|
PyCore::print($rs);
|