Re: [eigen] Computing left nullspace of A when rows > cols |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Computing left nullspace of A when rows > cols
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Fri, 30 Jan 2009 18:54:24 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=9trf9yZXrdRGirvwd64SrZLh/pChdHeL60qkQ9rK3Xg=; b=cqIsg/zhSFHQT33xEDqhtf2D33wXMzQhby8eteROXRFYTpV3HOqVffqGxEDIatkByC QhnzGsKYK180NZjepMIZ6G4hk8RTtp4UG0vXwwUEyvqQYsCYbu6QTzpyjZ9mwIpOwZj5 YRovzPqY1g1xVTjzYMQl+zhRElRu3NfGGEx64=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=Xj9a0Yqax0PItK2wM4jVIKSytKItRbjUQS3bWbqpzlwi2htcGHDtrvZq8+6DNffoXA Ilrtilb7aL2+RPMOoAZSyOOnFz+gyMFH6juPisCdnnoAN04zEM8l3nNQ7nK3CDlbN4nQ pDss0p+BrlGycHzC0i69u3sVWeVcm4Xv+/axM=
2009/1/30 Keir Mierle <mierle@xxxxxxxxx>:
> Just to second a request for this: Many applications use the SVD to
> form a basis for the nullspace of A, where A is 'wide'; this is the
> same here as the left nullspace of a 'tall' matrix.
>
> In libmv, I solve this problem by padding wide matrices with zeros on
> the bottom until they are square, then pass to the SVD. Suboptimal,
> but it works well enough for now.
>
> I will see about the SVD later this week.
Just to tell you where I am: I'm looking very closely at Householder
and Givens operations right now but for the math project i'm doing,
not for Eigen. So while i'm not doing the SVD now I'm doing stuff that
prepares me well to do it ASAP.
Just so you don't think i've abandoned this project!
Cheers
Benoit