Warning

You are reading the documentation related to the development version. Go here if you are looking for the documentation of the stable release.

Loading Bruker OPUS files

Here we load an experimental Bruker OPUS files and plot it.

import spectrochempy as scp

Z = scp.read_opus(
    ["test.0000", "test.0001", "test.0002", "test.0003"], directory="irdata/OPUS"
)
print(Z)
NDDataset: [float64] a.u. (shape: (y:4, x:2567))

plot it

_ = Z.plot()
plot read IR from opus

This ends the example ! The following line can be uncommented if no plot shows when running the .py script with python

# scp.show()

Total running time of the script: ( 0 minutes 0.367 seconds)

Gallery generated by Sphinx-Gallery