Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
X=[1 0 0];
Y=[0 0 1];
y_correct = 0.5;
assert(abs(your_fcn_name(X,Y)-y_correct)<1e-3)
y =
0.5000
|
2 | Pass |
X=[1 1.5 2];
Y=[0 1 0];
y_correct = 0.5;
assert(abs(your_fcn_name(X,Y)-y_correct)<1e-3)
y =
0.5000
|
3 | Pass |
X=[2 3 1];
Y=[0 3 4];
y_correct = 3.500;
assert(abs(your_fcn_name(X,Y)-y_correct)<1e-3)
y =
3.5000
|
4 | Pass |
X=[10 12 -10];
Y=[-7 -3 -47];
y_correct = 0;
assert(abs(your_fcn_name(X,Y)-y_correct)<1e-3)
y =
0.0000e+00 + 8.3611e-06i
|
Back to basics 12 - Input Arguments
525 Solvers
Make a vector of prime numbers
194 Solvers
convert matrix to single column
307 Solvers
548 Solvers
Flip the vector from right to left
2670 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!