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
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?
|