Element by element (xor) operation on cells.

조회 수: 3 (최근 30일)
Meghana Dinesh
Meghana Dinesh 2017년 8월 1일
답변: Akira Agata 2017년 8월 2일
I have two variables, Test and Train.
Test = cell of dimension 10 x 1 and
Train = cell of dimension 20 x 1
All elements are logical.
I want an operation similar to matrix multiplication, except that I want xor, instead of multiplication.
All of the 100 elements in Test should be xor(ed) with each of the 2000 elements in Train. All the while, I was doing this using for loop, but I want to avoid for loops now. I was trying to figure out performing this using bsxfun, but couldn't get it as desired. What is the most efficient way to do this?
  댓글 수: 5
James Tursa
James Tursa 2017년 8월 2일
Loops is probably the way to go here. You could potentially pull things out via cell2mat, do the calculations, and then use cell2mat to get your result, but why bother with all of that data copying? Using loops is straightforward and easy to read.
Meghana Dinesh
Meghana Dinesh 2017년 8월 2일
Right, thanks!
Since MATLAB is used for matrix operations, I thought there would be a more efficient way to perform this task. In reality, the dimensions are in the range of 27,000 so it takes a lot of time to compute the output.

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

답변 (1개)

Akira Agata
Akira Agata 2017년 8월 2일
I think cellfun would be suitable to this, like:
load('Train&Test.mat');
Result = cell(numel(Test), numel(Train));
for kk = 1:numel(Train)
Result(:,kk) = cellfun(@xor, repmat(Train(kk),numel(Test),1), Test,...
'UniformOutput', false);
end

카테고리

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