Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0:0.01:pi;
y = sin(x);
y_correct = 1.57;
assert(abs(argmax(x,y) - y_correct) < 0.01 )
|
2 | Pass |
x = 0:0.01:pi;
y = x.^2;
y_correct = 3.14;
assert(abs(argmax(x,y) - y_correct) < 0.01 )
|
3 | Pass |
x = 0:0.01:pi;
y = -(x-.42).^2;
y_correct = .42;
assert(abs(argmax(x,y) - y_correct) < 0.01 )
|
4 | Pass |
x = -100:0;
y = -cosh(x+3);
y_correct = -3;
assert(abs(argmax(x,y) - y_correct) < 0.01 )
|
261 Solvers
406 Solvers
Matlab Basics II - Log and natural log
136 Solvers
Rotate a matrix for 180 degree
115 Solvers
Rotate a matrix for 180 degree
132 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!