<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Modified Gram-Schmidt Orthogonalization in Matlab</title>
	<atom:link href="http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/feed/" rel="self" type="application/rss+xml" />
	<link>http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/</link>
	<description>Internet &#38; Technology</description>
	<lastBuildDate>Wed, 08 Feb 2012 10:01:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: touseef</title>
		<link>http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/#comment-2194607</link>
		<dc:creator>touseef</dc:creator>
		<pubDate>Wed, 20 Oct 2010 05:50:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=17#comment-2194607</guid>
		<description>no dear... 
we can not aplly this method for linearly dependent vector .</description>
		<content:encoded><![CDATA[<p>no dear&#8230;<br />
we can not aplly this method for linearly dependent vector .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shmuel</title>
		<link>http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/#comment-2194467</link>
		<dc:creator>Shmuel</dc:creator>
		<pubDate>Wed, 13 Oct 2010 10:52:12 +0000</pubDate>
		<guid isPermaLink="false">/?p=17#comment-2194467</guid>
		<description>Hi, well it nice and it works,

Do I need to run this function several time on the last result in order to improve the result?

Shmuel</description>
		<content:encoded><![CDATA[<p>Hi, well it nice and it works,</p>
<p>Do I need to run this function several time on the last result in order to improve the result?</p>
<p>Shmuel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elliott Back</title>
		<link>http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/#comment-1180008</link>
		<dc:creator>Elliott Back</dc:creator>
		<pubDate>Mon, 21 Jan 2008 15:09:30 +0000</pubDate>
		<guid isPermaLink="false">/?p=17#comment-1180008</guid>
		<description>Yes, but it won&#039;t give anything useful to you; you&#039;ll end up with output like an identity matrix.</description>
		<content:encoded><![CDATA[<p>Yes, but it won&#8217;t give anything useful to you; you&#8217;ll end up with output like an identity matrix.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shriks</title>
		<link>http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/#comment-1179613</link>
		<dc:creator>shriks</dc:creator>
		<pubDate>Mon, 21 Jan 2008 11:10:46 +0000</pubDate>
		<guid isPermaLink="false">/?p=17#comment-1179613</guid>
		<description>Can this Modified Gram-Schmidt Orthogonalization be applicable to linearly dependent vectors ?</description>
		<content:encoded><![CDATA[<p>Can this Modified Gram-Schmidt Orthogonalization be applicable to linearly dependent vectors ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://elliottback.com/wp/modified-gram-schmidt-orthogonalization-in-matlab/#comment-1932</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Sun, 03 Jul 2005 13:41:26 +0000</pubDate>
		<guid isPermaLink="false">/?p=17#comment-1932</guid>
		<description>function Q = mgs(A)

n = size(A,2);
Q = A;

for k = 1:n-1,
    Q(:,k) = A(:,k) ./ norm(A(:,k));
    A(:,k+1:n) = A(:,k+1:n) - Q(:,k) * (Q(:,k)&#039; * A(:,k+1:n));
end;
Q(:,n) = A(:,n) ./ norm(A(:,n));</description>
		<content:encoded><![CDATA[<p>function Q = mgs(A)</p>
<p>n = size(A,2);<br />
Q = A;</p>
<p>for k = 1:n-1,<br />
    Q(:,k) = A(:,k) ./ norm(A(:,k));<br />
    A(:,k+1:n) = A(:,k+1:n) &#8211; Q(:,k) * (Q(:,k)&#8217; * A(:,k+1:n));<br />
end;<br />
Q(:,n) = A(:,n) ./ norm(A(:,n));</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.204 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-10 06:33:11 -->

