Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 0:pi/10:2*pi;
y = sin(x);
z_correct = 1;
assert(isequal(find_max(x, y),z_correct))
|
2 | Pass |
%%
x = 0:pi/10:2*pi;
y = sqrt(x);
z_correct = sqrt(2*pi);
assert(isequal(find_max(x, y),z_correct))
|
3 | Pass |
%%
x = -10:1:0;
y = x.*x;
z_correct = 100;
assert(isequal(find_max(x, y),z_correct))
|
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
289 Solvers
Get the length of a given vector
3559 Solvers
Create a Multiplication table matrix...
281 Solvers
Matlab Basics - Convert a row vector to a column vector
419 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!