Maximisation of a box cut on 4 sides

2 次查看(过去 30 天)
A piece of rectangular paper (20 × 30cm) is supplied to make a box of the largest possible volume, by cutting out the corners and folding up the sides. The cuts must be square (ie both sides are reduced by the same amount). How big should the cuts be to maximise the volume of the box?
Using the information above, we have the equation
V = (20 2x)(30 2x)(x)
a) Use Matlab to find the volume of the box with a range of values of x from 0 to 10 in steps of 0.001. [You may need to use the element-wise multiplication, “.*”, in your formula]

回答(1 个)

Sean de Wolski
Sean de Wolski 2014-6-3
Something like:
V = @(x)-(20 - 2*x)*(30 - 2*x)*x
x = fminunc(V,0)

类别

Help CenterFile Exchange 中查找有关 3-D Volumetric Image Processing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by