ferrilab 0.1.1

Package intended for working with laboratory measures.
Documentation
  • Coverage
  • 24.14%
    7 out of 29 items documented2 out of 2 items with examples
  • Size
  • Source code size: 98.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.99 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 22s Average build duration of successful builds.
  • all releases: 22s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • asaltanubes/FerriLab
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • O2s0k0i3 asaltanubes

Welcome to FerriLab!

This library allows you to process data from a physics laboratory, make calculations between measures and plot figures.

Usage

FerriLab is based in the object [Measure], used to store either the value and the error of a measure. To make it easy to create a new measure the [measure] macro let you introduce data on various formats.

The object measure has all operations implemented between measures and numbers along with the basic math functions you may need for processing your data.

With every operation applied to a measure, the error will be modified following error propagation. Also a measure can be aproximated to the first significative figure of the error.

use ferrilab::{measure, Measure};
let time = measure!([0.227, 0.312, 0.4019, 0.512], [0.012, 0.023, 0.025, 0.048]);
let position = measure!([2.425, 3.41515, 5.13545, 7.24524], [0.2, 0.43, 0.544, 0.872]; true);
let speed = &position / &time; // Using reference allows position and time to still be used.
let angle_grads = measure!([0, 30, 45, 60, 90, 180], [0.01, 3, 4, 5.8, 7, 11.6]);

let angle_rad = angle_grads.rad(); // Transform grades to radians.
let cosine = angle_rad.cos(); // Calculates the cosine of angles.