How can I compare two cells which consist of the same values, and write the row number of the first to the other file

1 次查看(过去 30 天)
I have following two cells, where C is basically created by following code:
--------------------------------------------------------------
Nodes = cell2table(AllCell);
Nodes_Unique = unique(Nodes,'rows');
AllNodes = table2cell(Nodes_Unique);
n = size(AllNodes,1);
N = 0:(n-1);
a = rand(1,10000);
b = N';
B = num2cell(b);
C = [AllNodes,B];
--------------------------------------------------------------
C =
5×4 cell array
{'+0.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'} {[0]}
{'+0.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'} {[1]}
{'+2.5000000E+00'} {'+2.5000000E+00'} {'+5.0000000E+00'} {[2]}
{'+5.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'} {[3]}
{'+5.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'} {[4]}
--------------------------------------------------------------
AllCell =
12×3 cell array
{'+0.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'}
{'+0.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'}
{'+2.5000000E+00'} {'+2.5000000E+00'} {'+5.0000000E+00'}
{'+0.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'}
{'+5.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'}
{'+5.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'}
{'+5.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'}
{'+0.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'}
{'+0.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'}
{'+2.5000000E+00'} {'+2.5000000E+00'} {'+5.0000000E+00'}
{'+5.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'}
{'+5.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'}
--------------------------------------------------------------
I would like to compare each row of the 2nd cell (AllCell) with the 1st cell (C) and write the 4th column value of the 1st cell to the 2nd cells 4th column (AllCell) if the rows (or first 3 columns) match. The result should be like this:
{'+0.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'} {[1]}
{'+0.0000000E+00'} {'+0.0000000E+00'} {'+0.0000000E+00'} {[0]}
{'+2.5000000E+00'} {'+2.5000000E+00'} {'+5.0000000E+00'} {[2]}
{'+0.0000000E+00'} {'+5.0000000E+00'} {'+0.0000000E+00'} {[1]}
etc.
How can I achieve this comparison of those two cells? I could use tables too if cells don't work.

采纳的回答

Turlough Hughes
Turlough Hughes 2019-11-3
编辑:Turlough Hughes 2019-11-3
You actually don't need to run the comparisons. The unique function provides for this directly. So just modify the second line of your code as follows:
[Nodes_Unique,~,idx] = unique(Nodes,'rows');
And you can include the fourth column in AllCell as follows:
idx=idx-1; % seeing as you prefer to start with 0.
idx = num2cell(idx);
AllCell = [AllCell,idx];

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Reporting and Database Access 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by