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 = 5;
y_correct = 120;
assert(isequal(fact(x),y_correct))
Result =
120
|
2 | Pass |
x = 8;
y_correct = 40320;
assert(isequal(fact(x),y_correct))
Result =
40320
|
3 | Fail |
x = 33;
y_correct = 8.683317618811886e+36;
assert(isequal(fact(x),y_correct))
Result =
8.6833e+36
|
Sum of diagonal of a square matrix
1159 Solvers
Return elements unique to either input
475 Solvers
Convert a vector into a number
442 Solvers
Do Fast Fourier Transformation
177 Solvers
Matlab Basics - y as a function of x
241 Solvers