Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
F = [100 -50 35];
i = 0.05;
y_correct = 80.121;
assert(isequal(calc_present(F,i),y_correct))
|
2 | Fail |
F = [100];
i = 0.20;
y_correct = 83.333;
assert(isequal(calc_present(F,i),y_correct))
|
3 | Fail |
F = [-50];
i = 0.235;
y_correct = -40.486;
assert(isequal(calc_present(F,i),y_correct))
|
4 | Fail |
F = [20 50 50 50 0 100];
i = 0.085;
y_correct = 197.425;
assert(isequal(calc_present(F,i),y_correct))
|
Find state names that end with the letter A
708 Solvers
3968 Solvers
1309 Solvers
given 3 sides, find area of this triangle
680 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!