outliers_table 0.1.5

Outliers table, prices with outliers. Contains .dll
Documentation
use outliers_table::prices::CulcPrices;

pub fn main() {

  let min_height_min_width_price = 50.0; // Min All
  let min_height_max_width_price = 60.0; // Max Width
  let max_height_min_width_price = 70.0; // Max Height
  let max_height_max_width_price = 80.0; // Max All,
  let min_h = 1.0;
  let max_h = 5.0;
  let min_w = 1.0;
  let max_w = 4.0;
  let step_w = 0.5;
  let step_h = 0.5;

  let mut prices = CulcPrices::new(
    &min_height_min_width_price,
    &min_height_max_width_price,
    &max_height_min_width_price,
    &max_height_max_width_price,
    &min_h,
    &max_h,
    &min_w,
    &max_w,
    &step_w,
    &step_h
  );

  prices.culc_prices_table(false);
  println!("\n{}", prices);
  prices.culc_prices_table(true);
  println!("\n{}", prices);

}