|
» codelab : http://codelab.fr/accueil » Forum : SuperCollider : http://codelab.fr/supercollider » double tableaux : http://codelab.fr/1171 Ceci est la version imprimable d'un sujet du forum, pour retourner à la version complète : double tableaux |
| oyster_twiter — 2009-05-19 12:33:20 |
hi, |
| emoc — 2009-05-19 22:05:47 |
Hello, // soit à partir de tableaux existants a = [1, 2, 3]; b = [4, 5, 6, 7, 8]; t = Array.new(); t = t.add(a); t = t.add(b); // ou en le créant d'un coup t = [[1, 2, 3], [4, 5, 6, 7, 8]]; // pour tester t.at(0).at(2).postln; t.at(1).at(4).postln; t.at(1).size().postln; Suis je passé à côté de la question ? |
| oyster_twiter — 2009-05-20 10:43:39 |
Slt ! |