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))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
624 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3619 Solvers
Switch matrix to a column vector
260 Solvers
376 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!