SciPy.jl logo
SciPy.jl
  • Home
  • Tips
  • Examples
    • cluster
    • constants
    • fft
    • interpolate
    • io
      • scipy.io.hbwrite, scipy.ip.hbread
    • linalg
    • ndimage
    • odr
    • optimize
    • signal
    • sparse
    • spatial
    • special
    • stats
  • API References
Version
  • Examples
  • io
  • io
Edit on GitHub

scipy.io

scipy.io module

  • Input and output (scipy.io) Reference Guide

scipy.io.hbwrite, scipy.ip.hbread

  • scipy.io.hb_read Reference Guide
  • scipy.io.hb_write Reference Guide
data = sparse.csr_matrix(sparse.eye(3))  # create a sparse matrix
io.hb_write("data.hb", data)  # write a hb file
io.hb_read("data.hb").todense()  # read a hb file
3×3 Matrix{Float64}:
 1.0  0.0  0.0
 0.0  1.0  0.0
 0.0  0.0  1.0
« interpolatelinalg »

Powered by Documenter.jl and the Julia Programming Language.

Settings


This document was generated with Documenter.jl version 0.27.23 on Sunday 4 December 2022. Using Julia version 1.8.3.