@Namespace(value="tensorflow::ops") @NoOffset public static class tensorflow.MatrixInverse extends Pointer
[..., M, M] whose inner-most 2 dimensions
form square matrices. The output is a tensor of the same shape as the input
containing the inverse for all input submatrices [..., :, :].
The op uses LU decomposition with partial pivoting to compute the inverses.
If a matrix is not invertible there is no guarantee what the op does. It
may detect the condition and raise an exception or it may simply return a
garbage result.
Arguments:
* scope: A Scope object
* input: Shape is [..., M, M].
Returns:
* Output: Shape is [..., M, M].
\compatibility(numpy)
Equivalent to np.linalg.inv
\end_compatibility| Modifier and Type | Class and Description |
|---|---|
static class |
tensorflow.MatrixInverse.Attrs
Optional attribute setters for MatrixInverse
|
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator| Constructor and Description |
|---|
MatrixInverse(Pointer p)
Pointer cast constructor.
|
MatrixInverse(tensorflow.Scope scope,
tensorflow.Input input) |
MatrixInverse(tensorflow.Scope scope,
tensorflow.Input input,
tensorflow.MatrixInverse.Attrs attrs) |
| Modifier and Type | Method and Description |
|---|---|
static tensorflow.MatrixInverse.Attrs |
Adjoint(boolean x) |
tensorflow.Input |
asInput() |
tensorflow.Output |
asOutput() |
tensorflow.Node |
node() |
tensorflow.Operation |
operation() |
tensorflow.MatrixInverse |
operation(tensorflow.Operation operation) |
tensorflow.Output |
output() |
tensorflow.MatrixInverse |
output(tensorflow.Output output) |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic MatrixInverse(Pointer p)
Pointer.Pointer(Pointer).public MatrixInverse(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input)
public MatrixInverse(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @Const @ByRef tensorflow.MatrixInverse.Attrs attrs)
@ByVal @Name(value="operator tensorflow::Output") public tensorflow.Output asOutput()
@ByVal @Name(value="operator tensorflow::Input") public tensorflow.Input asInput()
public tensorflow.Node node()
@ByVal public static tensorflow.MatrixInverse.Attrs Adjoint(@Cast(value="bool") boolean x)
@ByRef public tensorflow.Operation operation()
public tensorflow.MatrixInverse operation(tensorflow.Operation operation)
@ByRef public tensorflow.Output output()
public tensorflow.MatrixInverse output(tensorflow.Output output)
Copyright © 2019. All rights reserved.