calculate the minimum probability
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    ELISABETTA BILLOTTA
 el 19 de En. de 2022
  
    
    
    
    
    Respondida: Steven Lord
    
      
 el 19 de En. de 2022
            I have in one case two matrices and in the other case three matrices of size 2922x1. the values within the matrices are probability values. how do i calculate the minimum probability between these 2 and between these 3 matrices?
2 comentarios
Respuesta aceptada
  Jon
      
 el 19 de En. de 2022
        Say you have three matrices of the same size A,B,C then you can find the minimum as  you describe using
D = min(min(A,B),C)
0 comentarios
Más respuestas (1)
  Steven Lord
    
      
 el 19 de En. de 2022
        Assuming they are the same class and size, you can concatenate them and call min with a dimension input.
A = randi([-5, 5], 4)
B = randi([-5, 5], 4)
C = cat(3, A, B)
D1 = min(C, [], 3) % Min along the third dimension
The concatenation strategy can work with more than two arrays, but for this simple example of two arrays you can just call the binary form of min. 
D2 = min(A, B)
0 comentarios
Ver también
Categorías
				Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




