chainer.functions.inv¶
-
chainer.functions.inv(a)[source]¶ Computes the inverse of square matrix.
- a (
Variableor N-dimensional array): - Input array to compute the inverse for. Shape of
the array should be
(n, n)wherenis the dimensionality of a square matrix.
Returns: Matrix inverse of a.Return type: Variable - a (