由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Mathematics版 - 如何发现矩阵中有两行相同或成比例?
相关主题
随机产生两个2x2矩阵,哪一个的两行更orthogonal?Help on a probability question
什么矩阵运算能得到这个结果? (转载)math experts, an interesting question please?
请教一个矩阵特征值的问题哪位能帮我看看Landau's theorm怎么证明
再问个数学问题distance between 2 disjoint compact sets
Re: 无限个0的和请教一个关于实分析的题
Re: 极限和连续的几个问题请问关于实数闭集的一个性质。
Re: 几何求解拓扑里头的一道构造反例题
一道简单拓扑题Latex 问题请教
相关话题的讨论汇总
话题: solution话题: 相同话题: 矩阵话题: complexity话题: matrix
进入Mathematics版参与讨论
1 (共1页)
g******6
发帖数: 942
1
给定一个矩阵, 知道其中有两个以上的行/列 是相同的或成比例的. 所以矩阵不是满次的
. 有什么算法能够很快的发现这些行/列? 谢谢.
g******6
发帖数: 942
2
Get a correlation matrix for any two rows/columns in the matrix to see whether
the two are identical or proportional? That sounds a fine solution but the
comuptation overhead is a little large. The complexity of this solution is
roughly O(n^3). Is there any solution with O(n^2) complexity? Thanks.
w**a
发帖数: 1024
3
这样行不?
假设所有元素都是非负(如果有负的,一下算法也很容易修补)
先把所有列归一化 n^2
然后对第一行qsort,找到横向连续相同的那些column index section。
一个index section 定义为:
若第2,3,4列数值相同,就把[2,3,4]定义为一个index section.
显然,这些sections应该是disjoint continuous sections,很容易找到。
对这些cont. sections随机抽出一行再进行qsort,
如此反复 上6,7次后如果你觉得差不多了(这里面有个概率,应该<1%的概率,在6,7次
后都相同)。整个列进行比较。

whether

【在 g******6 的大作中提到】
: Get a correlation matrix for any two rows/columns in the matrix to see whether
: the two are identical or proportional? That sounds a fine solution but the
: comuptation overhead is a little large. The complexity of this solution is
: roughly O(n^3). Is there any solution with O(n^2) complexity? Thanks.

1 (共1页)
进入Mathematics版参与讨论
相关主题
Latex 问题请教Re: 无限个0的和
Is this proof right?Re: 极限和连续的几个问题
ICM2010 Invited SpeakersRe: 几何求解
来一道题(由 BT question 而想) (转载)一道简单拓扑题
随机产生两个2x2矩阵,哪一个的两行更orthogonal?Help on a probability question
什么矩阵运算能得到这个结果? (转载)math experts, an interesting question please?
请教一个矩阵特征值的问题哪位能帮我看看Landau's theorm怎么证明
再问个数学问题distance between 2 disjoint compact sets
相关话题的讨论汇总
话题: solution话题: 相同话题: 矩阵话题: complexity话题: matrix