compute_eigen
Computes the eigenvalues and right eigenvectors of a stored square matrix.
Args:
name (str): The name of the tensor to analyze.
Returns:
dict: A dictionary with keys:
- 'eigenvalues': list of eigenvalues
- 'eigenvectors': list of right eigenvectors, one per column of the result
Raises:
ValueError: If the tensor is not found or is not a square matrix.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the stored square matrix to analyze. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||