Need Help this assigment
    8 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    ugur arslan
 am 23 Mai 2018
  
    
    
    
    
    Beantwortet: sloppydisk
      
 am 23 Mai 2018
            GMDP.Ploc{1}(:,:,1)=repmat([0 1],4,1); Can anyone explain this ?
0 Kommentare
Akzeptierte Antwort
  sloppydisk
      
 am 23 Mai 2018
        GMDP is a struct
GMDP.Ploc is a field of GMDP
GMDP.Ploc{1} is a cell containing a 3D array
GMDP.Ploc{1}(:,:,1) is the first 2D slice along the third dimension
repmat([0 1],4,1) repeats the array [0 1] 4 times along the first dimension and once along the second dimension.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
