How to compare two matrices in a cell array

1 回表示 (過去 30 日間)
Elysi Cochin
Elysi Cochin 2017 年 1 月 25 日
回答済み: Niels 2017 年 1 月 25 日
I have a cell array of size 1 x n, i need to compare two matrices at a time such as 1-2, 1-3, 2-3... how to take two different matrices at a time in a loop?
eg:
If it is a cell array of size 1 x 3, it becomes, 1-2, 1-3, 2-3
If it is a cell array of size 1 x 4, it becomes, 1-2, 1-3, 1-4, 2-3, 2-4, 3-4

採用された回答

Niels
Niels 2017 年 1 月 25 日
use 2 for loops
for i=1:n-1
for j=i+1:n
% compare whatever you want with cell{i}...cell{j}
end
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by