Accessing cells of a cell
    7 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    med-sweng
 il 27 Set 2014
  
    
    
    
    
    Commentato: Image Analyst
      
      
 il 27 Set 2014
            I have the following cell:

Now, when I open it, you can see the following:

My question is, how can we retrieve all the data of such cell?
Thanks.
Risposta accettata
  Geoff Hayes
      
      
 il 27 Set 2014
        If cellArray is your cell array as shown above with one element, then to access that element just do
 data = cellArray{1};
Here we assume that the cell array has been initialized as something similar to
 cellArray{1} = 0.5*ones(128,128);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Multidimensional Arrays in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


