Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Matlab Question: Loops are very useful for doing the same calculation over and over, very quickly. In this problem, we have a loaf of bread

Matlab Question:

Loops are very useful for doing the same calculation over and over, very quickly. In this problem, we have a loaf of bread that has been turned into toast. We need to write program that takes two inputs, an array for toast thickness and an array for toast area, which collectively represent each slice of the loaf of bread. Your function should call your butterbot function from Recitation 3 inside of a loop. Do not just rewrite the code from that function. In zyLabs, you will have a correct version of howMuchButter to call. For each call to howMuchButter, your function should take the output string and convert it to the following numeric code: - 1 for a small amount of butter. - 2 for a moderate amount of butter - 3 for lots of butter - 0 for the toast being too weird. These numeric codes should then be stored in an array. You may want to use the strcmp function, which compares two strings to determine if they are the same. Please search MATLAB help for strcmp. You can also consider using switch/case. After your loop has run, you should sort the resulting array in descending order. Your function should return two outputs: - The sorted array - The corresponding array of indices that maps the sorted array of butter amounts to the original toast thicknesses and areas. This function should NOT figure out the amount of butter itself. To figure out the amount of butter, it should call your function from Recitation 3 Problem 1. Calling other built in MATLAB functions is also acceptable, and functions, like sort and length are allowed, and may be useful to youimage text in transcribed

P.S. this is my Butterbot function.

function butterAmount = howMuchButter(toastThickness, toastArea)

if toastThickness

butterAmount = 'Small amount of butter'

elseif toastThickness >= 0.5 && toastThickness = 9 && toastArea

butterAmount = 'Moderate amount of butter'

elseif toastThickness > 0.75 && toastArea > 16

butterAmount = 'Lots of butter'

else butterAmount = 'Shape of toast too weird'

end

Your outputs should be in the following order: . The sorted amounts of butter . The original indecies Your Function Save C Reset MATLAB Documentation Code to call your function C Reset 1 2 [sort, map)-loafToast([0.6 .1 2 .3 15],[9 8 1e 2 20 15]) [sortRandom, mapRandom] = loaFToast(rand(1,10)*2,rand(1,10) *25) Run Function Your outputs should be in the following order: . The sorted amounts of butter . The original indecies Your Function Save C Reset MATLAB Documentation Code to call your function C Reset 1 2 [sort, map)-loafToast([0.6 .1 2 .3 15],[9 8 1e 2 20 15]) [sortRandom, mapRandom] = loaFToast(rand(1,10)*2,rand(1,10) *25) Run Function

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Management System MCQs Multiple Choice Questions And Answers

Authors: Arshad Iqbal

1st Edition

1073328554, 978-1073328550

More Books

Students also viewed these Databases questions

Question

What are the basic elements of nonverbal communication?

Answered: 1 week ago

Question

How is the IETF related to the IRTF?

Answered: 1 week ago