Filter löschen
Filter löschen

comparing values of two matrix

2 Ansichten (letzte 30 Tage)
Akmyrat
Akmyrat am 13 Aug. 2014
Beantwortet: Andrei Bobrov am 13 Aug. 2014
Hi lets say I have 2 matrices A=[1 2 1 2 3 3], B=[1 2 2 1 3 3], i want to compare values of matrix and write in different matrix C, if same "s", if not same "n". result should be C=['s' 's' 'n' 'n' 's' 's'], thanks !!

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 13 Aug. 2014
c0 = {'n','s'};
C = c0( 1+(A == B));

Weitere Antworten (0)

Kategorien

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

Community Treasure Hunt

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

Start Hunting!

Translated by