Revision 10980

View differences:

trunk/libraries/libRaster/src/org/gvsig/raster/util/Histogram.java
199 199
	   * estadistica para esa banda y si est? a false no se calcular?.
200 200
	   * @return
201 201
	   */
202
	  public long[][] getBasicStatsFromHistogram(boolean[] bands){
202
	  public long[][] getBasicStats(boolean[] bands){
203 203
	  	if(histogram == null)
204 204
	  		return null;
205
	  	return getBasicStatsFromHistogram(0, histogram[0].length - 1, bands);
205
	  	return getBasicStats(0, histogram[0].length - 1, bands);
206 206
	  }
207 207
	  /**
208 208
	   * Calculo de estad?sticas a partir de un histograma. El resultado de la funci?n es un array
......
222 222
	   * estadistica para esa banda y si est? a false no se calcular?.
223 223
	   * @return
224 224
	   */
225
	  public long[][] getBasicStatsFromHistogram(int beginPos, int endPos, boolean[] bands){
225
	  public long[][] getBasicStats(int beginPos, int endPos, boolean[] bands){
226 226
	  	if(histogram == null)
227 227
	  		return null;
228 228
	  	

Also available in: Unified diff