< prev index next >

modules/javafx.graphics/src/main/java/com/sun/marlin/stats/Histogram.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 40,50 **** STEPS[1] = 1; for (int i = 2; i < MAX; i++) { STEPS[i] = STEPS[i - 1] * BUCKET; } - // System.out.println("Histogram.STEPS = " + Arrays.toString(STEPS)); } static int bucket(int val) { for (int i = 1; i < MAX; i++) { if (val < STEPS[i]) { --- 40,49 ----
< prev index next >