parse

Function parse 

Source
pub fn parse<I: Iterator<Item = Result<String>>>(
    lines: I,
) -> Result<Vec<Vec<f64>>, Box<dyn Error>>
Expand description

Parses lines of whitespace-separated numbers into rows of f64 values.

ยงErrors

Returns an error if reading fails or any word cannot be parsed as f64.