This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = [3 6 8 5];
y_correct = 3;
assert(isequal(matrix_min(x),y_correct))
Error: Undefined function 'matrix_min' for input arguments of type 'double'.
|
2 | Fail |
%%
x = [3 -6; 8 5];
y_correct = -3;
assert(isequal(matrix_min(x),y_correct))
Error: Undefined function 'matrix_min' for input arguments of type 'double'.
|
3 | Fail |
%%
x = [101; 21; 10000; 510];
y_correct = 21;
assert(isequal(your_fcn_name(x),y_correct))
Error: Assertion failed.
|
Project Euler: Problem 10, Sum of Primes
707 Solvers
Calculate the integral of the polynomial
85 Solvers
find the maximum element of the matrix
349 Solvers
Create a two dimensional zero matrix
355 Solvers
445 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!