diff --git a/stubs/Col.php b/stubs/Col.php index bb6772a..c579a49 100644 --- a/stubs/Col.php +++ b/stubs/Col.php @@ -7,7 +7,7 @@ namespace Arma; * * @package Arma */ -interface Col extends Internal\Dense, Internal\Vector +interface Col extends Internal\DenseVector { } diff --git a/stubs/Mat.php b/stubs/Mat.php index 130a3a5..a268b13 100644 --- a/stubs/Mat.php +++ b/stubs/Mat.php @@ -12,8 +12,8 @@ interface Mat extends Internal\Dense, Internal\Matrix /** * Construct the matrix to have user specified dimensions and fill with specified pattern. * - * @param int $n_rows - * @param int $n_cols + * @param int $n_rows[optional] + * @param int $n_cols[optional] * @param int $fill[optional] * @return static */ diff --git a/stubs/Row.php b/stubs/Row.php index c5961b3..22077fe 100644 --- a/stubs/Row.php +++ b/stubs/Row.php @@ -7,7 +7,7 @@ namespace Arma; * * @package Arma */ -interface Row extends Internal\Dense, Internal\Vector +interface Row extends Internal\DenseVector { } diff --git a/stubs/SpCol.php b/stubs/SpCol.php new file mode 100644 index 0000000..334834e --- /dev/null +++ b/stubs/SpCol.php @@ -0,0 +1,8 @@ +