Help for this page

Select Code to Download


  1. or download this
    $histo[ ( $x - $x_min )/$x_bin_width ]++;
    
  2. or download this
    $histo[ int( ( $x - $x_min )/$x_bin_width ) ]++;
    
  3. or download this
    $histo[ ( $x - $x_min )/$x_bin_width ][ ( $y - $y_min )/$y_bin_width ]
    +++;