Borrar filtros
Borrar filtros

Import data from *.ch file

4 visualizaciones (últimos 30 días)
Davide Masiello
Davide Masiello el 23 de Abr. de 2024
Editada: Austin M. Weber el 11 de Mayo de 2024
Hello - has anyone ever tried to import gas chromatograph data from files with .ch extension?
  2 comentarios
Mathieu NOE
Mathieu NOE el 23 de Abr. de 2024
Editada: Mathieu NOE el 30 de Abr. de 2024
I am not really in that business but just in case it would help :
Austin M. Weber
Austin M. Weber el 11 de Mayo de 2024
Editada: Austin M. Weber el 11 de Mayo de 2024
I downloaded the chemstation_130.ch file from the chromConverter repository and it looks like it's possible to extract the data using fread:
file_name = 'chemstation_130.ch';
fid = fopen(file_name);
data = fread(fid);
fclose(fid)
figure
area(data,'EdgeColor','none')
xlim([0 500])
However, while it appears to be a GC spectrum, this method doesn't provide any metadata so I can't be sure what the units are. @Davide Masiello, you might try opening your own files using fread to see if the data match what you would expect.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Standard File Formats en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by