Create a row vector, 1xN (Integer, >1), such that
the mean of the vector is M (Real number) and the standard deviation of the vector is S (Real number)
%example
N=2;
M=0;
S=sqrt(8);
y=[2 -2]
%or
y=[-2 2]
There is no unique answer, and the answer will be checked against the mentioned conditions.
The expected precision of Mean and STD is 6 digits after decimal.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers8
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2814 Solvers
-
Back to basics 11 - Max Integer
811 Solvers
-
Find the largest value in the 3D matrix
1666 Solvers
-
30 Solvers
-
GJam 2013 Veterans: Ocean View (Small)
18 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
D'oh. For the longest time, I read
> Create a row vector, 1xN (Integer, >1) [...]
as requiring that the elements of the vector should be integers, and thought that this is a problem requiring more time and thought. It was only when I looked at the test suite now that I realized that that couldn't be the case since M*N was not an integer in several tests.