-
Notifications
You must be signed in to change notification settings - Fork 52
Closed
Labels
API changeChanges to existing functions or objects in the API.Changes to existing functions or objects in the API.topic: Linear AlgebraLinear algebra.Linear algebra.
Description
Problem
The current default behaviour of linalg.svd
computes the full decomposition by setting full_matrices=True
by default. On the other hand, the default behaviour of linalg.qr
specifies mode="reduced"
by default.
Proposal
Change de default to full_matrices=False
in linalg.svd
. In most cases the reduced SVD is good enough. Even more, it’s better to do less work by default and just make the more expensive operation opt-in.
Metadata
Metadata
Assignees
Labels
API changeChanges to existing functions or objects in the API.Changes to existing functions or objects in the API.topic: Linear AlgebraLinear algebra.Linear algebra.