Question

Write a Matlab funtion that will produce a Z-table. The input of your function is a...

Write a Matlab funtion that will produce a Z-table.

The input of your function is a Z value z ranging from -4.00 to 4.00 (including -4 and 4).

The output of your funtion is the entry prob in the Z table corresponding to your input.

If the input is out of range, your function should return -1.

You should using the Z table descriped as following: Table entryfor z is the standard normal curve to the left of z

0 0
Add a comment Improve this question Transcribed image text
Answer #1

%------------------------------------Main script-----------------------------------------------------------------

% function to calculate probability for given Z-score value

function P = calculate(Z)

% if Z-score is leass than -4 or greater than 4, then simply return -1

if Z < -4 | Z > 4

P = -1;

% else return the standard normal curve for corresponding Z-score

else

P = normcdf(Z);

end

end

%------------------------------------Main script-----------------------------------------------------------------

> calculate (-2.5) ns-0.0062097 > calculate (1.5) ns- 0.93319 > calculate (0) ns-0.50000 Command Hstory calculate (4.5) Filte

Add a comment
Know the answer?
Add Answer to:
Write a Matlab funtion that will produce a Z-table. The input of your function is a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Needs to be solved in MATLAB Problem 4 Produce a conversion table for Celsius and Fahrenheit...

    Needs to be solved in MATLAB Problem 4 Produce a conversion table for Celsius and Fahrenheit temperatures. The input to the function should be two numbers: Tlower and Tupper Which define the lower and upper range, in Fahrenheit, for the table The output of the function should be a two column matrix with the first column showing the temperature in Fahrenheit, from Tlower (32 °F) to Tupper (212 °F) with an increment of 5 °F, and the second column showing...

  • This code NEEDS TO BE DONE IN MATLAB!!!! Write a function that takes one input, an...

    This code NEEDS TO BE DONE IN MATLAB!!!! Write a function that takes one input, an integer number n, and returns a matrix that is nxn, where the value of each number is the distance from the upper-left to bottom-right diagonal. (Use while loops if you can!) Numbers below the diagonal should be negative, and numbers above the diagonal should be positive. For example, if your input was 5, your output would be: 0 1 2 3 4 -1 0...

  • Using MatLab Write a function called PrimeFinder that receives an integer n as an input argument,...

    Using MatLab Write a function called PrimeFinder that receives an integer n as an input argument, and provides an output argument called Primes that is a vector containing all prime numbers between 2 and n, inclusive. Verify the correctness of your code with inserting 13 as the input argument, and check that your output is Primes = [2,3,5,7,11,13]. You are NOT allowed to use any directly relevant MATLAB built-in function such as divisors, etc. NOTE: A prime number is a...

  • ·Write a Cl Calculator in MATLAB (function name ci_calc.m). Your function should take four input arguments:...

    ·Write a Cl Calculator in MATLAB (function name ci_calc.m). Your function should take four input arguments: σ, x,n, p% Confidence Interval Calculator σ (Std Dev) Sample mean Sample size Confidence level 577.4 37.4556 100 90% Numeric input Numeric input Numeric input Numeric input Lower limit of Cl -57.52 Numeric output Upper limit of Cl 132.43 Numeric output

  • Matlab a) Write a MATLAB code that takes the grade letters from the user and provide him/her with the GPA for that seme...

    Matlab a) Write a MATLAB code that takes the grade letters from the user and provide him/her with the GPA for that semester Enter your grades (letters): AABBC (input) Your GPA is 3.2 output) b) Write a Matlab user defined function to that takes a letter grade and return a numeric grade as shown in the table below. Any other value should give an error message (Invalid Grade). You function name should be Letter2Grade Use the following information to calculate...

  • Write a MATLAB function named my_calc • The function will have one input and one return...

    Write a MATLAB function named my_calc • The function will have one input and one return value. • The first input, A, will be a list of numbers. The return value, M, will be a list of numbers. Each value of M must be calculated using the corresponding value of A according to this equation: M=Acos(30°)+5A3 Notes: • Example Test Case: A = [0.20 0.40 0.60 0.80 0.100 0.20]; M = my_calc(A); results in M = [0.2132 0.6664 1.5996 3.2528...

  • Write a user-defined MATLAB function for the following math function y(x). The input to the function...

    Write a user-defined MATLAB function for the following math function y(x). The input to the function is x and the output is y. y(x)=-(0.2*x^4)+((e^-0.5*x)*x^3)+7*x^2 Call the function to calculate y(x) over the interval -3 ≤ x ≤ 4 for each increment of 1. Display x and corresponding y(x) in a text file with labeled column headings. Use the type command to display the contents in the text file.

  • 1. Write a Matlab function, piecewise (), that will calculate and return the value of the...

    1. Write a Matlab function, piecewise (), that will calculate and return the value of the function f(x) defined by: 0<rS3 3<s5 e (x) -cos(3r) 2 sin(r) 2. Write a Matlab script to plot the function f(z) on the interval -3ss8. Ensure the output is sufficiently smooth by declaring z with enough data points. The plot should include the title My Piecewise Function, appropriate axis labels and grid lines. 1. Write a Matlab function, piecewise (), that will calculate and...

  • (Matlab) Suppose we have a function “hw5f.m” that takes as input x and outputs the value for a function f(x). Write a Matlab program that inputs: • interval [a, b]; • m, the number of data points wit...

    (Matlab) Suppose we have a function “hw5f.m” that takes as input x and outputs the value for a function f(x). Write a Matlab program that inputs: • interval [a, b]; • m, the number of data points with evenly spaced nodes from x1 = a to xm = b, and values from f(x); • location z satisfying x2 < z < xm−1, where h = (b − a)/(m − 1); and outputs the value of the interpolaton polynomial using only...

  • Write your answer code into one function file on matlab

     Write your answer code into one function file on matlab The spiral of Archimedes. The spiral of Archimedes is a curve described in polar coordinates by the equation r= kθ Where r is the distance of a point from the origin, and d is the angle of that point in radians with respect to the origin. Write a function file to compute the spiral of Archimedes with varying number of inputs (no input, one input, two inputs) for k, 0 and varying number of...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT