Cardiac Output Estimation from Arterial Blood Pressure Waveforms 1.0.0

File: <base>/code/3estimate/est02_WK.m (366 bytes)
function x = est02_WK(PP,HR)
% EST02_WK  CO estimator 2: Windkessel 1st-order LTI RC circuit model
%
%   In:   PP  <nx1> vector  --- beat-to-beat pulse pressure
%         HR  <nx1> vector  --- beat-to-beat heart rate
%
%   Out:  X    <nx1> vector  --- estimated CO (uncalibrated)
% 
%   Written by James Sun (xinsun@mit.edu) on Nov 19, 2005.

x = PP .* HR;