Add contents of two columns to new columns with a delimiter between them

조회 수: 6 (최근 30일)
Rogier Busscher
Rogier Busscher 2017년 5월 24일
댓글: dpb 2017년 5월 26일
I have a matrix of 11693682x3 uint8. I would like to create so called 'keys' for my data in a new column. For example:
1, 2, 3
2, 5, 7
3, 3, 6,
4, 29, 0
Output:
1, 2, 3, 1|2
2, 5, 7, 2|5
3, 3, 6, 3|3
4, 29, 0, 4|29
Could anyone point me at the best way to solve this?

답변 (2개)

dpb
dpb 2017년 5월 24일
Well, it's simply impossible to add something like that as another column in an int8 array.
To do something similar you could create a corollary variable
>> key=categorical(cellstr(num2str(rb(:,1:2),'%d|%d')))
key =
1|2
2|5
3|3
4|29
>>
I'd suggest more conventional hashing techniques might be more useful, though. What's the end use here?
  댓글 수: 5
Rogier Busscher
Rogier Busscher 2017년 5월 25일
But if you have a faster/better solution for this problem, i'm open to suggestions.
dpb
dpb 2017년 5월 26일
I thought you were looking for a way to find the given pair; the above does that by locating where that pair is in the vector.
If it's two sets, then just combination of
key1==val1 & key2==val2
is the same result.

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2017년 5월 25일
If you only need to know what the distance is for each combination, but you do not need the path for each combination, then you can use https://www.mathworks.com/help/matlab/ref/graph.distances.html
If you need to know the path, then you can loop through all sources and use https://www.mathworks.com/help/matlab/ref/graph.shortestpath.html to all destinations.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by