Cardiac Output Estimation from Arterial Blood Pressure Waveforms 1.0.0

File: <base>/code/3estimate/est01_MAP.m (294 bytes)
function x = est01_MAP(MAP)
% EST01_MAP  CO estimator 1: Mean arterial pressure
%
%   In:   MAP  <nx1> vector  --- beat-to-beat mean arterial pressure
%
%   Out:  X    <nx1> vector  --- estimated CO (uncalibrated)
% 
%   Written by James Sun (xinsun@mit.edu) on Nov 19, 2005.

x = MAP;