Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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:

Code Block
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

...