% FemFoot data clear all; theta = [0 10 30 75 -10 -30 -75]; FemA = [85.7700 89.7800 97.0200 109.6000 83.7400 76.5600 75.6200]; FootA = [83.4714 100.2710 133.1866 177.3880 65.8014 31.1565 -4.4342]; footfemA = FootA-FemA FemV = [ 7.1000 7.8000 11.1000 16.0000 4.7000 2.7000 1.3000]; FootV = [20.7500 27.0000 54.3000 89.7000 15.1000 6.5000 -2.4000]; footfemV = FootV-FemV figure(1) plot(theta,footfemA,'ro') xlabel('\theta in degrees') ylabel('P_{footA} - P_{femA}') title('Arterial Side: circles = data') grid on figure(2) plot(theta,footfemV,'ro') xlabel('\theta in degrees') ylabel('P_{footV} - P_{femV}') title('Venous Side: circles = data') grid on hold off