This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = rand(1,10^6);
tic;
y_new=round(newRMS(x)*10^6)/10^6;
t_new=toc;
tic;
y_correct = round(sqrt(var(x,1)+mean(x)^2)*10^6)/10^6;
t_correct=toc;
assert(isequal(y_new,y_correct))
assert(t_new<t_correct)
|
451 Solvers
Back to basics 23 - Triangular matrix
532 Solvers
Solve the set of simultaneous linear equations
173 Solvers
Determine the number of odd integers in a vector
321 Solvers
181 Solvers