How can I pass from 2D matrix to 3D matrix?
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    wolss
 el 4 de Jul. de 2019
  
    
    
    
    
    Respondida: Image Analyst
      
      
 el 4 de Jul. de 2019
            Hi, 
I'm trying to pass to a 3D matrix having a 2D matrix of this type: signal 1024x512. Each row is a signal obtained by a Radar measurement lasting 14.2 of a subject that breaths and is then transformed in frequency domain with an amplitude (columns).
My 3D matrix should have as three dimensions: waveform number, amplitude, frequency.
I don't know how to put togheter these 3 parameters...
Thank you
Regards
0 comentarios
Respuesta aceptada
  KALYAN ACHARJYA
      
      
 el 4 de Jul. de 2019
        Pass the 2D matrix to 3D as plane (2D insert to 3D), you can do that using Multidimentional Arrays.
Is this your are looking for?
2 comentarios
  KALYAN ACHARJYA
      
      
 el 4 de Jul. de 2019
				x,y, z..see the following figure, you can figure out the 3D array representation, all individual planes work as 2D array. 

Más respuestas (1)
  Image Analyst
      
      
 el 4 de Jul. de 2019
        Maybe
array3D = array2D; % (only do for the first 2D matrix);
array3D = cat(3, array3D, array2D); % Append array2D onto existing 3D matrix.
0 comentarios
Ver también
Categorías
				Más información sobre Antennas, Microphones, and Sonar Transducers 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!


