Borrar filtros
Borrar filtros

XOR between two 3d arrays: array1>=250 xor array2>=170

1 visualización (últimos 30 días)
Espen Mikkelsen
Espen Mikkelsen el 6 de Jun. de 2018
Comentada: Espen Mikkelsen el 6 de Jun. de 2018
I have two 3d arrays sized 40*60*157800. I want to count number of values with array1>=250 xor array2>=170. I want to do this for each of the 40x60 values. This will give me a 2d array of 40*60*1. I have tried this code which is not working:
sum(myarray1>=10.5 xor myarray2>=50,3);

Respuesta aceptada

James Tursa
James Tursa el 6 de Jun. de 2018
Editada: James Tursa el 6 de Jun. de 2018
You almost had the syntax correct. E.g.,
sum(xor(myarray1>=10.5,myarray2>=50),3)

Más respuestas (0)

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