Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1:10];
y_correct = 6.2048;
assert(isequal(rms_value(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
2 | Pass |
%%
x = [-5:5];
y_correct = 3.1623;
assert(isequal(rms_value(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
3 | Pass |
%%
x = [0 0.5 1/sqrt(2) 1 sqrt(2)];
y_correct = sqrt(3)/2;
assert(isequal(rms_value(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
4 | Pass |
%%
x = [2i i 0 1 2];
y_correct = 0;
assert(isequal(rms_value(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
5 | Pass |
%%
x = [2i i 0 1 2]';
y_correct = 0;
assert(isequal(rms_value(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
1262 Solvers
The Goldbach Conjecture, Part 2
1285 Solvers
How to find the position of an element in a vector without using the find function
2477 Solvers
Back to basics 25 - Valid variable names
293 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!