Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

The data are in two files, *.resp and *.puls

The signal is in the first row; this can be imported with MATLAB’s “Import Data”, but this is inefficient as it treats each value as a separate variable. It works, but is slow. MATLAB code is:

fn = 'C:\Working\Physio - Siemens\3433Patros\PhysioLog_20210303T125426.resp';
id = fopen(fn);
y_cell = textscan(id,'%d');
fclose(id)
y = y_cell{1};
figure,plot(y)

The pulse has peaks presumably where the software detected a pulse

The resp has peaks presumably where the software detects a rbeath - although not at end-pispiration

  • No labels