Borrar filtros
Borrar filtros

q matrices element matching

1 visualización (últimos 30 días)
PRAVEEN GUPTA
PRAVEEN GUPTA el 28 de Ag. de 2019
Comentada: PRAVEEN GUPTA el 28 de Ag. de 2019
i have a matrix like
A=[1 2 3 4 5;
1 2 3 4 6
1 3 4 5 8];
i want a output like X=[1 2 3 4 0]
i.e. i need the common element in the particular coloumn if there is no particular coloum result must b zero

Respuesta aceptada

Walter Roberson
Walter Roberson el 28 de Ag. de 2019
X = zeros(1, size(A,2));
mask = A(1,:) == A(2,:) | A(1,:) == A(3,:);
X(mask) = A(1,mask);
mask = A(2,:) == A(3,:);
X(mask) = A(2,mask);

Más respuestas (1)

Steven Lord
Steven Lord el 28 de Ag. de 2019
I suspect this is a homework assignment so I'm only going to give a hint. You want the most common element as long as it appears multiple times? The mode function may be of use to you.

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by