create a variable to store sets
    5 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
I would like to create a variable that stores a set of numbers for an arc (a,b).
S(a,b) = {1,2,3,4,5}
S(b,c) = {3,4,5} etc
but I dont know how to write it in matlab. Please help
0 Commenti
Risposta accettata
  Iain
      
 il 7 Giu 2013
        Sounds like you need a cell array:
 S{set_no} = [2 3 5 6];
 S(2}      = [1 5 6 3 64 23];
Più risposte (1)
  Azzi Abdelmalek
      
      
 il 7 Giu 2013
        S{1,1}='a',
S{1,2}='b'
S{1,3}={1,2,3,4,5}
S{2,1}='b',
S{2,2}='c'
S{2,3}={3,4,5}
0 Commenti
Vedere anche
Categorie
				Scopri di più su Audio and Video Data 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!