How to get a data set using Mean and standard deviation
11 views (last 30 days)
Show older comments
Kushagra Kirtiman
on 22 Jun 2022
Answered: Dyuman Joshi
on 22 Jun 2022
I want to get data set containing 10 points with mean =63 and standard deviation of 2.3. Is there a way to do this in MATLAB
0 Comments
Accepted Answer
Dyuman Joshi
on 22 Jun 2022
mu=63;
sigma=2.3;
%generate normally distributed numbers
y=randn(1,10);
y=sigma*(y-mean(y))/std(y)+mu
mean(y)
std(y)
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!