Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
H = 1;
y_correct = sqrt(2) - 1;
assert(isequal(view_factor(H),y_correct))
F =
0.4142
|
2 | Pass |
H = 3;
y_correct = sqrt(10) - 3;
assert(isequal(view_factor(H),y_correct))
F =
0.1623
|
3 | Fail |
H = [0.5 2 4 10];
y_correct = [sqrt(1.25)-0.5, sqrt(5)-2, sqrt(17)-4, sqrt(101)-10];
assert(isequal(view_factor(H),y_correct))
|
Determine if a Given Number is a Triangle Number
322 Solvers
289 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
286 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!