This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
H = 1;
y_correct = sqrt(2) - 1;
assert(isequal(view_factor(H),y_correct))
|
2 | Pass |
H = 3;
y_correct = sqrt(10) - 3;
assert(isequal(view_factor(H),y_correct))
|
3 | Pass |
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))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!