Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

And/or between two 3d arrays

1 visualización (últimos 30 días)
Espen Mikkelsen
Espen Mikkelsen el 11 de Feb. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have two 3d arrays sized 40*60*157000. I want to count number of values with array1 > 250 and/or array2 >170 into one third 2d array. For example if a value in array1 is under 250, then the corresponding value in array2 have to be higher than 170 to be valid in the third array. If array1 is over 250, then its doesnt matter if array2 is over or under 170 to be valid in the third array. I want to do this for each of the 40x60 values. This will give me a 3d array of 40x60x1. I only know the code with "and" which is working like this:
sum(array1>250 & array2>170,3);
  1 comentario
madhan ravi
madhan ravi el 11 de Feb. de 2019
Just illustrate with a small example.

Respuestas (1)

James Tursa
James Tursa el 11 de Feb. de 2019
Do you mean this?
sum(array1>250 & array2>170,3);

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by