%-----------------------------------------------------------------------------%
% p1PartB.m
% DIS
%-----------------------------------------------------------------------------%
% Name:             Partner: 
% ID:               ID:
% Section:          Section:
% Date:
% Project:
%-----------------------------------------------------------------------------%

% Cleanup:
  close all % close all figure windows
  clear     % clear variable assignments
  clc       % command window

% Assign data for plotting:

  weights =  0:10: ______ ; 

  deflections = [ __________________________________________________________ ];

% Generate plot:

  plot( ______________ , _________________ , ' __ ' ) 

% Label plot:
  title('Weights vs Deflections')
  ylabel('Deflections')
  xlabel('Weights')

% Answer question on plot:

  text(50,2,'Deflection for weight of 75N =  _____ ')
