Re: GramSchmidt function
- To: mathgroup at smc.vnet.net
- Subject: [mg124644] Re: GramSchmidt function
- From: David Reiss <dbreiss at gmail.com>
- Date: Fri, 27 Jan 2012 06:16:22 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <jfr2jl$n9f$1@smc.vnet.net>
use Orthogonalize ?Orthogonalize Orthogonalize[{Subscript[v, 1],Subscript[v, 2],...}] gives an orthonormal basis found by orthogonalizing the vectors Subscript[v, i]. Orthogonalize[{Subscript[e, 1],Subscript[e, 2],...},f] gives a basis for the Subscript[e, i] orthonormal with respect to the inner product function f. >> --david On Jan 26, 3:24 am, "Andie S." <freefalling... at gmail.com> wrote: > I am having trouble creating a function gramSchmidt[vList] to > construct an orthogonal basis for a list of vectors, vList. > any pointers on how to do this? Thanks!