Help with linear optimisation problem
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Teshan Rezel
      
 el 25 de En. de 2022
  
    
    
    
    
    Comentada: Teshan Rezel
      
 el 31 de En. de 2022
            Hi folks, 
I'm looking to conduct a linear optimisation and was hoping for some help on the matter. 
I have 56 columns of data, with 256 rows each; lets call this set A. I have another column of data, with 56 rows; lets call this set B. I essentially want to correlate each of the 256 values in each column of set A to a single value in set B; lets call this set C.
I want to know which of the 256 values across set C give the best correlation between sets A and B. In other words, which row in set A gives the best correlation to the corresponding value in set B, across all columns of set A.
Any help on this matter would be most appreciated!
0 comentarios
Respuesta aceptada
  Matt J
      
      
 el 25 de En. de 2022
        
      Editada: Matt J
      
      
 el 25 de En. de 2022
  
      Diffs=abs(reshape(B,1,1,[])-A);
d=min(Diffs,[],3);
[Arows,Acols]=find(d==min(d(:)));
Más respuestas (0)
Ver también
Categorías
				Más información sobre Logical 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!

