We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The printing of a ttensor has a few problems:
G41 = ttb.tensor(np.array([1,1,0,1,1,0,0,1]),(2,2,2)); U = np.array([[1, 0],[0, -1],[1, 1]]); V = np.array([[1, -1],[1, 1],[0, 1]]); W = np.array([[0, 1],[1, 1],[1, 0]]); X41_tt = ttb.ttensor(G41, [U, V, W]) print(X41_tt)
Tensor of shape: (3, 3, 3) Core is a tensor of shape (2, 2, 2) data[0, :, :] = [[1 1] [0 0]] data[1, :, :] = [[1 0] [1 1]] U[0] = [[ 1 0] [ 0 -1] [ 1 1]] U[1] = [[ 1 -1] [ 1 1] [ 0 1]] U[2] = [[0 1] [1 1] [1 0]]
The text was updated successfully, but these errors were encountered:
Core is
Sorry, something went wrong.
Marking as closed via #353 (naming data to core should get resolved in discussion on #350)
No branches or pull requests
The printing of a ttensor has a few problems:
The text was updated successfully, but these errors were encountered: