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()

# scp.show()  # uncomment to show plot if needed (not necessary in jupyter notebook)
plot read IR from opus

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

Gallery generated by Sphinx-Gallery