modified_gram_schmidt¶
- probnum.utils.linalg.modified_gram_schmidt(v, orthogonal_basis, inner_product=None, normalize=False)[source]¶
Stabilized Gram-Schmidt process.
Computes a vector \(v'\) such that \(\langle v', b_i \rangle = 0\) for all basis vectors \(b_i \in B\) in the orthogonal basis in a numerically stable fashion.
- Parameters
v (ndarray) – Vector (or stack of vectors) to orthogonalize against
orthogonal_basis
.inner_product (Optional[Union[ndarray, LinearOperator, Callable[[ndarray, ndarray], ndarray]]]) – Inner product defining orthogonality. Can be either a
numpy.ndarray
or aCallable
defining the inner product. Defaults to the euclidean inner product.normalize (bool) – Normalize the output vector, s.t. \(\langle v', v' \rangle = 1\).
- Returns
Orthogonalized vector.
- Return type
v_orth