Length tension unloading data

Three giant bands with a rest length of 18.5cm were tested by stretching from a rest length of approx 18.5cm to a length of approx 69.5 cm

T3 = readtable('GiantbandLTdata3.xlsx');
l0=18.5; % unstretched length of giantband. Appears to have a tollerance of 5mm
offset=l0-44; % zero extension for the tests was at 44
len3=T3.length+offset; % avoid using length as a variable as it is also a matlab function

Band1=[T3.B1 T3.B2 T3.B3];
Band2=[T3.C1 T3.C2 T3.C3];
Band3=[T3.D1 T3.D2 T3.D3];
plot(len3,Band1,'b',len3,Band2,'r',len3,Band3)
title('unloading curve for 3 bands of 18.5cm rest length')'
xlabel('length (cm)');ylabel('Force (Newtons)');grid on
ans = 

  Text (unloading curve for 3 bands of 18.5cm rest length) with properties:

                 String: 'unloading curve for 3 bands of 18.5cm rest length'
               FontSize: 11
             FontWeight: 'bold'
               FontName: 'Helvetica'
                  Color: [0 0 0]
    HorizontalAlignment: 'center'
               Position: [40.0000 14.0900 0]
                  Units: 'data'

  Use GET to show all properties

disp(sprintf('Publish source is %s.m on %s',mfilename,date))
Publish source is bandLTunoading.m on 07-Feb-2021