Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x1 = 4;
x2 = 4;
h1 = 3;
y_correct = 6;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
2 | Pass |
%%
x1 = 4;
x2 = 8;
h1 = 3;
y_correct = 9;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
3 | Pass |
%%
x1 = 4;
x2 = 12;
h1 = 3;
y_correct = 12;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
4 | Pass |
%%
x1 = 4;
x2 = 16;
h1 = 3;
y_correct = 15;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
5 | Pass |
%%
x1 = 4;
x2 = 20;
h1 = 3;
y_correct = 18;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
6 | Pass |
%%
x1 = 4;
x2 = 24;
h1 = 3;
y_correct = 21;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
7 | Pass |
%%
x1 = 4;
x2 = 12;
h1 = 5;
y_correct = 20;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
8 | Pass |
%%
x1 = 4;
x2 = 16;
h1 = 10;
y_correct = 50;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
9 | Pass |
%%
x1 = 2;
x2 = 4;
h1 = 5;
y_correct = 15;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
10 | Pass |
%%
x1 = 3;
x2 = 6;
h1 = 4;
y_correct = 12;
assert(isequal(findHeight(x1,x2,h1),y_correct))
|
Create a cell array out of a struct
508 Solvers
Project Euler: Problem 9, Pythagorean numbers
282 Solvers
Output any real number that is neither positive nor negative
316 Solvers
404 Solvers
480 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!