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

scp.show()

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

Gallery generated by Sphinx-Gallery