Procs
proc newLoad(filename: string): NDArray {....raises: [IOError], tags: [], forbids: [].}
-
Loads array from binary file.
Parameters:
- filename - Path to input file
Returns: New NDArray with loaded data
Raises: IOError if file cannot be read
Example:
let arr = newLoad("myarray.nda") arr.print("Loaded array", 2)