Question
Describe some steps or notes for yourself appropriate test cases with results copied and pasted in the word file. write a matlab script file that
Describe some steps or notes for yourself appropriate test cases with results copied and pasted in the word file. write a matlab script file that calculates the mean of n numbers. the number n and the actual n umber values are being asked from the user on the screen. write a matlab function that that converts miles to kilometers, meters, centimeters and millimeters. test your code using 5 different values for miles and display the results in a table format using fprinf. the table header should look like this: miles kilometers meters centimeters millimeters 3. write a matlab script to ask the user to input the scalar (number) values for a, b, c, and x and then returns the value of ax2+bx+c. the program repeats this process until the user enters zero values for all four variables. 4. write a function to calculate n! ("n factorial"), where n is a non-negative integer. note that 0! is defined to be 1. then write a script file the compares your function’s results to the built in matlab factorial calculator, factorialno for the same test case(s). print on the screen the comparisons using fprintf such that the result on the screen looks something like this: “the factorial of n is your result, while matlabresult is the result from Matlab.” (the underlined words are variables that will change each time).
Step by Step Solution
3.37 Rating (150 Votes )
There are 3 Steps involved in it
Step: 1
Answer Main Content Write Simple Test Case Using Functions You can test your MATLAB program by defining unit tests within a single file that contains a main function and local test functions In a func...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started