-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
Standardize the behavior of the algorithms when n > m
. Choices include:
- 'flipped' (current): initially transpose input array
A
, then transpose
the returned results at the end. - 'axis': compute
sketch
function on the row space and returningA.dot(S)
instead ofS.T.dot(A)
for QB decomposition.