Im trying to figure out how to solve this question on MATLAB and for some reason
ID: 3745894 • Letter: I
Question
Im trying to figure out how to solve this question on MATLAB and for some reason im getting errors as you can see my work, so can somebody help me with the actual code for MATLAB for this question and show me on there MATLAB please
Problem 2: Generate 10,000 Gaussian random numbers with a mean of 80 and standard deviation of 23.5. (You'll want to suppress the output so that you don't overwhelm the command window with data.) Use the mean function to confirm that your array actually has a mean of 80. Use the std function to confirm that your standard deviation is actually 23.5.Explanation / Answer
standard_deviation = 23.5; m = 80; % use m instead of mean. since mean is a library function that you are going to use. x = standard_deviation*randn(10000, 1) + m; r1 = mean(x)