* @return a matrix builder to be used in creating a matrix for use with the
* {@link SVD} class
*/
@Deprecated
public static MatrixBuilder getMatrixBuilderForSVD(boolean transpose) {
Algorithm fastest = SVD.getFastestAvailableAlgorithm();
// In the unlikely case that this is called when no SVD support is
// available, return a default instance rather than error out. This
// enables programs that call this method without invoking the SVD (or
// those that do so optionally) to continue working without error.
if (fastest == null) {