multiplication question in 3 dim
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Ole
 el 9 de Jul. de 2020
  
    
    
    
    
    Respondida: madhan ravi
      
      
 el 9 de Jul. de 2020
            Let say there is matrix from meshgrid X,Y. 
How to multiply it through a vector L in building third dimension of a F matrix ?
Each component of L(k) will miltiply X for example for the third dimension.
x = 0:1:5; y = 0:2:40
L = 1:0.1:10; % third dimension
[X, Y] = meshgrid(x,y); 
F = (X.*Y).*L % problematic
F is two dimensions in X,Y and third dimention in L
And I would like how to access rows and colums and depth for this  matrix ?
0 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
				Más información sobre Get Started with MATLAB 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!

