A company manufactures a part for which there is a desired weight. There is a tolerance of N percent, meaning that the range between minus and plus N% of the desired weight is acceptable
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:32.1
All Answers
total answers (1)
>> weight = 12.3; >> N = 2; >> min = weight - weight*0.01*N min = 12.0540 >> max = weight + weight*0.01*N max = 12.5460
need an explanation for this answer? contact us directly to get an explanation for this answer