Salut tout le monde !
Voila, j'ai un problème avec ce bout de code :
Je n'arrive pas a comprendre l'interet des "S" et "V" ici.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 for(int i = 0; getOption("Dataset" +i) != null; i++) { String [] x = getOption("Dataset" +i).split(","); for(int j = 0; getOption("Dataset" +i+ "S" +j) != null; j++){ String [] y = getOption("Dataset" +i+ "S" +j).split(","); for(int k = 0; getOption("Dataset" +i+ "S" +j+ "V" +k) != null; k++){ String [] z = getOption("Dataset" +i+ "S" +j+ "V" +k).split(","); }}}
Dataset sert a définir des Plots pour des interfaces graphiques jfreechart
Partager