This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Given J*JT * x = b, solve for x in linear time and space. | |
| J is m by n | |
| x is m by 1 | |
| b is m by 1 | |
| m < n | |
| J is a rectangular matrix that represents a tree with equal and opposite entries. | |
| For example: |
NewerOlder