@Namespace(value="tensorflow::ops") @NoOffset public static class tensorflow.SelfAdjointEig extends Pointer
input such that input[..., :, :] = v[..., :, :] * diag(e[..., :]). The eigenvalues
are sorted in non-decreasing order.
python
# a is a tensor.
# e is a tensor of eigenvalues.
# v is a tensor of eigenvectors.
e, v = self_adjoint_eig(a)
e = self_adjoint_eig(a, compute_v=False)
Arguments:
* scope: A Scope object
* input: Tensor input of shape [N, N].
Optional attributes (see Attrs):
* compute_v: If True then eigenvectors will be computed and returned in v.
Otherwise, only the eigenvalues will be computed.
Returns:
* Output e: Eigenvalues. Shape is [N].
* Output v: Eigenvectors. Shape is [N, N].| Modifier and Type | Class and Description |
|---|---|
static class |
tensorflow.SelfAdjointEig.Attrs
Optional attribute setters for SelfAdjointEig
|
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator| Constructor and Description |
|---|
SelfAdjointEig(Pointer p)
Pointer cast constructor.
|
SelfAdjointEig(tensorflow.Scope scope,
tensorflow.Input input) |
SelfAdjointEig(tensorflow.Scope scope,
tensorflow.Input input,
tensorflow.SelfAdjointEig.Attrs attrs) |
| Modifier and Type | Method and Description |
|---|---|
static tensorflow.SelfAdjointEig.Attrs |
ComputeV(boolean x) |
tensorflow.Output |
e() |
tensorflow.SelfAdjointEig |
e(tensorflow.Output e) |
tensorflow.Operation |
operation() |
tensorflow.SelfAdjointEig |
operation(tensorflow.Operation operation) |
tensorflow.Output |
v() |
tensorflow.SelfAdjointEig |
v(tensorflow.Output v) |
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 SelfAdjointEig(Pointer p)
Pointer.Pointer(Pointer).public SelfAdjointEig(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input)
public SelfAdjointEig(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @Const @ByRef tensorflow.SelfAdjointEig.Attrs attrs)
@ByVal public static tensorflow.SelfAdjointEig.Attrs ComputeV(@Cast(value="bool") boolean x)
@ByRef public tensorflow.Operation operation()
public tensorflow.SelfAdjointEig operation(tensorflow.Operation operation)
@ByRef public tensorflow.Output e()
public tensorflow.SelfAdjointEig e(tensorflow.Output e)
@ByRef public tensorflow.Output v()
public tensorflow.SelfAdjointEig v(tensorflow.Output v)
Copyright © 2019. All rights reserved.