tanh/
tanh.rs

1use graplot::{x, Plot};
2
3fn main() {
4    let plot = Plot::new((|x: f64| x.tanh(), x(6.)));
5    plot.show()
6}