In: Computer Science
Problem 2: The Injury Severity Score (ISS) is a medical score to assess trauma severity and is calculated as follows. Each injury is assigned an Abbreviated Injury Scale (AIS) score in the range [0-5] which is allocated to one of six body regions (head, face, chest, abdomen, extremities, and external). Only the highest AIS score in each body region is used. The three most severely injured body regions (i.e. with the highest scores) have their AIS scores squared and added together to produce the ISS. Therefore, the value of the ISS is always between 0 and 75. Create a function called compute_iss that takes an array of 6 AIS values as its only input argument and produces the ISS value as its output. In your homework m-file, define the AIS array [3 0 4 5 3 0] and call to your function using this array as an argument. Find the ISS value for the defined AIS array. Make sure to add %comments.