Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
area_correct = 25;
tolerance = 1e-12;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
a =
3
b =
4
h =
5
ans =
25
|
2 | Pass |
%%
n = 2;
area_correct = 41;
tolerance = 1e-12;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
a =
3
b =
4
h =
5
ans =
41
|
3 | Pass |
%%
n = 3;
area_correct = 66;
tolerance = 1e-12;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
a =
3
b =
4
h =
5
ans =
66.0000
|
4 | Pass |
%%
n = 50;
area_correct = 439116598409;
tolerance = 1e-3;
assert(abs(triangle_sequence(n)-area_correct)<tolerance)
a =
3
b =
4
h =
5
ans =
4.3912e+11
|
Remove any row in which a NaN appears
6827 Solvers
Matrix indexing with two vectors of indices
485 Solvers
348 Solvers
Natural numbers in string form
347 Solvers
Solve a System of Linear Equations
3466 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!