It turns out that since you''ve become experts

Assignment Help MATLAB Programming
Reference no: EM13165996

It turns out that since you've become experts on rating clothing, Acme Clothing Company has hired you to rate their clothes. Clothes are now represented as structures instead of vectors with the fields (all of which are numbers between 0 and 5):
Condition, Color, Price, Matches, and Comfort
Acme has a much simpler way of rating their clothes than you used before:
Rating  5 * Condition  3 * Color  2 * Price  Matches  9 * Comfort You have a script called makeClothes.m that will create a structure array called acmeClothes that contains clothes structures. You are to write a script called rateClothes that will add a Rating field and a Quality field to each of the structures in the acmeClothes array. The Rating field in each structure should contain the rating of that particular article of clothing. The Quality field is a string that is 'premium' if the Rating is over 80, 'good' over 60, 'poor' over 20, and 'liquidated' for anything else. Notes: 1. You MUST use iteration to solve this problem. 2. To make things easy, just place the line makeClothes at the top of your script so you're guaranteed to have the correct acmeClothes array to work with. 3. The fields are case sensitive, so make sure you capitalize them.

HERE IS THE MAKECLOTHES FUNCTION YOU NEED TO USE:

function res = makeClothes
% Function to create clothes structure
    for fld = 1:5
        for item = 1:8
            ca{item} = floor(rand(1,1) * 6);
        end
        data(fld,:) = ca;
    end
    res = struct('Condition', data(1,:), ...
                 'Color', data(2,:), ...
                 'Price', data(3,:), ...
                 'Matches', data(4,:), ...
                 'Comfort', data(5,:));           
end

Reference no: EM13165996

Questions Cloud

Create a pda with 2 stacks : Create a PDA with 2 stacks. The first stack is preloaded with data (example below), the data input consists of 1 & 0 as well. Your PDA should process the input data, adding the binary string to the values in the first stack and storing the result in ..
The comparedto method : the comparedTo method. This is the course class I do not understand how to do the compared to method. I need to order the course first by department then by the course number.
Describe how you would access these 4 members : Create a namespace titled global Type that contains four members. The members should be two named constants, n and rate. It should also contain a variable count and the function printResult. Describe how you would access these 4 members in a progr..
State what is the normality of sulfuric acid solution : What is the normality of sulfuric acid solution which contains 6.64 g of H2SO4 in 837 mL of solution provided that the reaction involved
It turns out that since you''ve become experts : It turns out that since you've become experts on rating clothing, Acme Clothing Company has hired you to rate their clothes. Clothes are now represented as structures instead of vectors with the fields (all of which are numbers between 0 and 5): C..
Write out a cfg : Write out a CFG for the following regular expression a n b m  | m > n > 0
State what is the percent for a solution consisting : What is the percent H2SO4 for a solution consisting of 4.62 equivalencies of H2SO4 mixed with 11.2 kg of water if both portions
Draw appropriate lewis structure and vsepr structure : Draw appropriate Lewis structure and VSEPR structure for oxalate anion. What is the O-C-O bond angle? What is the C-C-O bond angle? What is the hybridization of each carbon? On which atoms does the negative charge reside? Draw all resonance struct..
What is the total mass of insulin in the bottle : Insulin is a protein that is used by the body to regulate both carbohydrate and fat metabolism. A bottle contains 375 of insulin at a concentration of 50.0 . What is the total mass of insulin in the bottle?

Reviews

Write a Review

 

MATLAB Programming Questions & Answers

  Consider the predator-prey models

Consider the predator-prey models developed early part of the 20 th  century in which the number of predators and preys may be predicted using the pair of ODEs

  Calculate and plot the error in the numerical derivative

Write a program to calculate and plot the error in the numerical estimate of the derivative.

  Compute the eigenvalues and eigenvectors of the matrix

Compute the eigenvalues and eigenvectors of the matrix

  Modeling mechanical systems with matlab

MATLAB, developed by MathWorks, is a popular software that is widely used in areas of engineering, science, education and finance. Simulink is an environment for multidomain simulation and Model-Based Design for dynamic and embedded system.

  Create functions in file

Create Functions in File and how to code this function - Declare function inputs, and outputs

  Simulate rigid body mechanics

Write a MATLAB code to simulate rigid body mechanics. Create a video file of a free falling rod. Neglect effects from drag or loss of kinetic energy. Make sure the rod falls onto one end showing how the rigid body reacts to hitting the ground. Cannot..

  To make things easy, just place the line makeclothes

To make things easy, just place the line makeClothes at the top of your script so you're guaranteed to have the correct acmeClothes array to work with.

  Matlab – discrete time simulation

MATLAB – Discrete time simulation, solve  Discrete time syetm problem,  DT kalman filter problem,  Steady state DT kalman filter problem

  Create the graph using matlab functions

Create the graph, which contains a piecewise function where a line exists in the first interval, a parabola in the second interval, and the sine function in the third interval.

  Mat lab programming problem

In case the problem in the code I want you to modify it give the correct temperature.

  Find the roots using matlab built-in functions roots & fzero

the following equation, what is the modified equation for a fixed-point iteration method. The roots of the function are x = -2.2020235, -0.4088152, and 1.11083871, how would you determine whether or not the method will converge on a root? If the tech..

  Write a function in matlab

write a function in MATLAB

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd