write numpy array to file. arr: numpy array to write filepath: file to write to
(arr, filepath)
| 231 | |
| 232 | |
| 233 | def writeNpyFile(arr, filepath): |
| 234 | """write numpy array to file. |
| 235 | arr: numpy array to write |
| 236 | filepath: file to write to |
| 237 | """ |
| 238 | np.save(filepath, arr) |
| 239 | |
| 240 | |
| 241 | def writeFlo5File(flow, filename): |
no outgoing calls
no test coverage detected