How to get matrix weighted average
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Supriya Gain
 el 24 de Sept. de 2019
  
    
    
    
    
    Editada: KALYAN ACHARJYA
      
      
 el 24 de Sept. de 2019
            Suppose i have matrix  A=[1;2;3]. I want the answer as = [1/6;2/6;3/6]
0 comentarios
Respuesta aceptada
  KALYAN ACHARJYA
      
      
 el 24 de Sept. de 2019
        
      Editada: KALYAN ACHARJYA
      
      
 el 24 de Sept. de 2019
  
      A=[1;2;3];
result=A./6
or 
result=A/6
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Resizing and Reshaping 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!

