由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 一个矩阵分解的问题(对称实矩阵)
相关主题
c++ private 问题lapack如何求解XA=B
return Triangular_iterator( _beg_pos );意思求QR分解求近似逆矩阵程序, 最好是C系列的
请问C++返回值和返回引用区别问个问题
a MatLab question问个并行算程序的问题?
关于Singular Value DecompositionRe: 任意形状n多边形的重心
问个简单的matrix变换的问题,包子答谢问几个简单的矩阵问题吧
解一道 GOOGLE 面试题 ...问个矩阵吧
并行程序能做到不用专门写么?请教不完整矩阵的近似问题
相关话题的讨论汇总
话题: 分解话题: triangular话题: 矩阵话题: 对称话题: upper
进入Programming版参与讨论
1 (共1页)
k***s
发帖数: 277
1
【 以下文字转载自 Mathematics 讨论区 】
发信人: kenjs (乔峰.Leon), 信区: Mathematics
标 题: 一个矩阵分解的问题(对称实矩阵)
发信站: BBS 未名空间站 (Thu Nov 9 18:11:19 2006), 转信
cholesky decomposition (from matlab)
可以把实对称矩阵X分解为
R' * R = X
可是现在我需要的是把X分解为R,R也是upper trianglular matrix
R * R' = X
请问有没有什么现成的方法?(最好不要自己从头到尾coding)
l***t
发帖数: 81
2
what do you mean ?
they are the same.

【在 k***s 的大作中提到】
: 【 以下文字转载自 Mathematics 讨论区 】
: 发信人: kenjs (乔峰.Leon), 信区: Mathematics
: 标 题: 一个矩阵分解的问题(对称实矩阵)
: 发信站: BBS 未名空间站 (Thu Nov 9 18:11:19 2006), 转信
: cholesky decomposition (from matlab)
: 可以把实对称矩阵X分解为
: R' * R = X
: 可是现在我需要的是把X分解为R,R也是upper trianglular matrix
: R * R' = X
: 请问有没有什么现成的方法?(最好不要自己从头到尾coding)

k***s
发帖数: 277
3
no,
R is upper triangular, then R' is lower triangular

【在 l***t 的大作中提到】
: what do you mean ?
: they are the same.

p***o
发帖数: 1252
4
transpose X first

【在 k***s 的大作中提到】
: no,
: R is upper triangular, then R' is lower triangular

t****t
发帖数: 6806
5
X is symmetric. go math board and read answer. this is not programming trick
at all.

【在 p***o 的大作中提到】
: transpose X first
1 (共1页)
进入Programming版参与讨论
相关主题
请教不完整矩阵的近似问题关于Singular Value Decomposition
有奖问答问个简单的matrix变换的问题,包子答谢
Breaking News: Apple sues Krispy Kreme (转载)解一道 GOOGLE 面试题 ...
Breaking News: Apple sues Krispy Kreme (转载)并行程序能做到不用专门写么?
c++ private 问题lapack如何求解XA=B
return Triangular_iterator( _beg_pos );意思求QR分解求近似逆矩阵程序, 最好是C系列的
请问C++返回值和返回引用区别问个问题
a MatLab question问个并行算程序的问题?
相关话题的讨论汇总
话题: 分解话题: triangular话题: 矩阵话题: 对称话题: upper