Question: Write a MATLAB program in a script file with the following requirements: 1- Your program should have a primary function and three sub-functions and one
Write a MATLAB program in a script file with the following requirements: 1- Your program should have a primary function and three sub-functions and one anonymous function. In addition to for-loop or while loop, and if statement. 2- The user can pass the equation of x3+3x2+4 to the main function from the command window. 3- The equation should be passed to a sub-function torake the integration symbolically from 0 to 10 and store the answer into a variable calls myInt. 4- The equation should be passed to the second sub-function to take the first derivative symbolically and evaluate the derivative at point 3 and store the answer into a variable calls myDerl. 5- The equation should be passed to the third sub-function to take the second derivative symbolically and evaluate the derivative at point 2 and store the answer into a variable calls myDer2. 6- An anonymous function should calculate the sum of the myInt, myDer1, and myDer2 and store the answer into a variable calls mySum. 7- Two for-loops must take the four values of myInt, myDer1, myDer2, and muSum and store them into a [22] matrix A. 8- A set of if-elseif-else-end statement should compare the four elements of the matrix to see which one is the maximum and which one is the minimum value and create a message for the user with fprintf() regarding the Max and min values. For example: The value of the integration result is the maximum
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
