Question
Solve it using matlab and there is an example for a similar one i put
• Write a function calculate_mean_ci(). The inputs to this function are of the form (x, sigma, level). These are x: a numeric
6. Find the command to calculate the sample mean of the values 1, 3, and 5. The sample mean of the n numbers 21,22,..., is I=
0 0
Add a comment Improve this question Transcribed image text
Answer #1

function [lwr, upr] = calculate_mean_ci(x, sigma, level)

z = @(p) sqrt(2) * erfcinv(p*2); %function to calculate z-score for a particular

%value of significance level(alpha)

n = length(x); %size of the given sample

x_bar = mean(x); %mean of the given sample

alpha = 1-level/100; %alpha value (level = (1-alpha)*100)

zscore = z(alpha); %z-score for the calculated alpha

lwr = x_bar-zscore*(sigma/sqrt(n));

upr = x_bar+zscore*(sigma/sqrt(n));

end

Please give thumbs up

Add a comment
Know the answer?
Add Answer to:
Solve it using matlab and there is an example for a similar one i put •...
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
  • • Write a function calculate_mean_ci(). • The inputs to this function are of the form (x,...

    • Write a function calculate_mean_ci(). • The inputs to this function are of the form (x, sigma, level). These are X: a numeric vector. sigma : population standard deviation. level : the confidence level given as a percentage, e.g., 95. • The output is a vector of length two of the form [lwr, upr), where MT lwr = ī – 20.025

  • Should be an easy one in MATLAB with a simple proof for part (a). Thanks for...

    Should be an easy one in MATLAB with a simple proof for part (a). Thanks for the help in checking my answers: (Pencil-and-paper and MATLAB) L A be a non-singular n x n matrix. Then it has an inverse (a) Let the vectors ui, i 1,2,... n, be the columns of of A-1. Show that the wi satisfy the linear systems Au where v is a vector whose sole nonzero entry is 1 in the ith position. (b) se the...

  • MATLAB Define the following computer programming terms and give an example of each. MATLAB example Sequence...

    MATLAB Define the following computer programming terms and give an example of each. MATLAB example Sequence Selection structure- Repetition structure - Relational operators (True = 1, False = 0) Logical operators (True = 1, False =0) And Or Less than Less than or equal to Greater than Greater than or equal to Equal to Not equal to Not ans ans Type the following relational operator commands into MATLAB in the command window one at a time. Write the results to...

  • Solve d,e and f please using R code Part I: qqplots This part deals with qqplots...

    Solve d,e and f please using R code Part I: qqplots This part deals with qqplots of all kinds. Let's do some easy expe riments, first. Let's take a sample from a normal distribution with mu-2, sigma 3, and then look at the hist and the qqplot of that data: set.seed(3) n 100 # Sample size x norm(n,2,3) # Sample from N(mu-2, sigma-3) hist(x) # Looks normal. But that depends on breaks. qqnorm(x) # This doesn't depend on binsize, and...

  • MATLAB Question: Write a script for the problem pictured. Please send the script, not just the...

    MATLAB Question: Write a script for the problem pictured. Please send the script, not just the printout. Make sure your script allows you to input a value for n so when prompted, in the command window, user types n value. The n value should be the f_k if k ==1 .... Please also send print outs if you can. BELOW IS A SAMPLE ANSWER THAT DID NOT PUT THE INPUT SCRIPT NEEDED FOR THIS QUESTION TO BE CORRECT. YOU CAN...

  • I am trying to plot a time series model using R. So far I have the...

    I am trying to plot a time series model using R. So far I have the following code, but I'm getting an error located at the very bottom. Can you please explain what I'm doing wrong, and what I should be doing instead in order to avoid the error? As far as the data is concerned, the first column displays time (hour-by-hour) across 20 days, giving 504 rows of data and the six columns thereafter display the bike demand/usage at...

  • help me please , By using MATLAB How can I plot the solution of linear diffrential...

    help me please , By using MATLAB How can I plot the solution of linear diffrential system ? I want the code in general case We were unable to transcribe this imageclose all clear MATLAB Code: clc A= [1 0 1; 0 0 0;00-1]; % Coefficient Matrix Xo = [5 76]'; % Initial condition V, D = eig(A); % Get the Eigen values and Eigen vectors % General Solution: X=Sum of {c_i*exp(L_i*t) *V_i % where c_i are constants, L_i are...

  • Program already solved, but I need to put function documentation headers for each and every function...

    Program already solved, but I need to put function documentation headers for each and every function in your program (for the ones you write, and keep the function header I give you for the main() function). Also make sure you keep the file block header at the top of the file, and fill in the information correctly. Secondly this week you must get your indentation correct. All indentation must use 2 spaces, and you should not have embedded tabs in...

  • please solve the example As with the confidence intervals, we will be assuming the two population...

    please solve the example As with the confidence intervals, we will be assuming the two population standard deviations are equa but unknown. Thus, we will need to calculate the pooled standard deviation to use in our test statistic. Dur typical hypothesis test would be of the form H:44-42 = 8vs. H:4,-4, 78This is a two side test because the alternative is not equal. (H:14-4, <8, or H:44 - H2>, are also possible. Our test statistic is I X - X₂-8...

  • # 3. The following code draws a sample of size $n=30$ from a chi-square distribution with...

    # 3. The following code draws a sample of size $n=30$ from a chi-square distribution with 15 degrees of freedom, and then puts $B=200$ bootstrap samples into a matrix M. After that, the 'apply' function is used to calculate the median of each bootstrap sample, giving a bootstrap sample of 200 medians. "{r} set.seed (117888) data=rchisq(30,15) M=matrix(rep(0,30*200), byrow=T, ncol=30) for (i in 1:200 M[i,]=sample(data, 30, replace=T) bootstrapmedians=apply(M,1,median) (3a) Use the 'var' command to calculate the variance of the bootstrapped medians....

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
ADVERTISEMENT