Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
N = 100
y_correct = 1;
assert(isequal(rootN(a,N),y_correct))
N =
100
|
2 | Pass |
a = [1 64 216];
N = 3
y_correct = [1 4 6];
assert(isequal(rootN(a,N),y_correct))
N =
3
|
3 | Fail |
a = 1/100;
N = 2
y_correct = 1/10;
assert(isequal(rootN(a,N),y_correct))
N =
2
|
4 | Pass |
a = 826^10;
N = 10
y_correct = 826;
assert(isequal(rootN(a,N),y_correct))
N =
10
|
1163 Solvers
Getting the indices from a matrice
360 Solvers
Is this triangle right-angled?
2874 Solvers
Sum of the Multiplication of Vectors
202 Solvers
69 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!