Looking for ENG1014 - Engineering Numerical Analysis - S1 2025 test answers and solutions? Browse our comprehensive collection of verified answers for ENG1014 - Engineering Numerical Analysis - S1 2025 at learning.monash.edu.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Write a function called "loop_function" that takes three input variables, z, c and count. The variable z and c are doubles, while count is an integer. When called, the function will perform the calculation:
repeatedly from n = 0. It will then print the value of zcount to the screen.
Copy-paste your function code including header into the text box below
The step response of second-order oscillator systems is given by the following equation:
where is the time, (Greek letter "xi") is the damping ratio, and (Greek letter "omega") is the undamped natural frequency.
The following figure is a 2-by-1 subplot. The top subplot contains a plot of against for various values. The bottom subplot contains a plot of against for a single value of and the maximum value is marked.
Write the Python code to reproduce the figure, using the following information:
Copy and paste your Python code in the plain text box below.
Consider the following array:
Which of the following statements will extract elements common to the 1st and 3rd rows, and the 2nd and 3rd columns (i.e., the result should be [[2, 3], [10, 11]])?
Describe how linear regression can be used on the exponential function in a meaningful way, noting that the function is not a linear function.
Write a function called "categorise_BMI" that takes a patient ID and the patient data as inputs.
Note that the patient data is an array that contains:
The function should return a string with the BMI category that the corresponding patient fits into (i.e. either 'underweight', 'normal', 'overweight' or 'obese'). Copy and paste your function code into the textbox below.
Explain the process you used to choose the most appropriate integration method (3-4 sentences).
Explain (in 2-3 sentences) why integration of data with equally-spaced points is able to be computed more quickly than data with different spacings
Copy-paste your code from the previous question into the textbox.