This Matlab example illustrates a simple use of task farming in Matlab.
It tries to calculate the area under the curve sin(x)*sin(100*x) using
trapeziodal method. It divides the area under the curve from x = 0.0 to
x = 0.5 into panels with step sizes of 0.01 and calculates the areas of
the panels by using task farming to call the NetSolve function
'area'. The NetSolve function 'area' accepts as inputs the lengths of
the 2 sides of the trapeziod and the height of the trapezoid and
calculates the area of a single trapezoidal panel.
