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 | Pass |
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
|
Program an exclusive OR operation with logical operators
639 Solvers
Back to basics 6 - Column Vector
908 Solvers
Create a Multiplication table matrix...
283 Solvers
convert matrix to single column
306 Solvers
What is Sum Of all elements of Matrix
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!