Effacer les filtres
Effacer les filtres

Maximisation of a box cut on 4 sides

2 vues (au cours des 30 derniers jours)
Jerin James
Jerin James le 3 Juin 2014
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]

Réponses (1)

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

Catégories

En savoir plus sur 3-D Volumetric Image Processing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by