Filter löschen
Filter löschen

could anyone help me how to find the difference between two cell arrays

1 Ansicht (letzte 30 Tage)
jaah navi
jaah navi am 18 Jul. 2021
Kommentiert: jaah navi am 18 Jul. 2021
I am having two cell arrays A and B
A= 5x1 cell
B= 5x1 cell
here A is
10x2 double
10x2 double
10x2 double
10x2 double
10x2 double
B is
10x2 double
10x2 double
10x2 double
10x2 double
10x2 double
Now I want to find the difference of each value present in first column of A with first column of B and second column of A with second column of B for all 10x2 double.
Could anyone please help me on this.

Antworten (1)

KSSV
KSSV am 18 Jul. 2021
Run a loop or use:
C=cellfun(@minus,A,B,'UniformOutput',false);
  1 Kommentar
jaah navi
jaah navi am 18 Jul. 2021
Thanks. As a next step, could you please help me how to find the difference between first and second column in C.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by