Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1; b = 1; c = 2;
y_correct = 0.6847;
F = view_factor2(a,b,c);
assert(F < (y_correct + 1e-4))
|
2 | Pass |
a = 4; b = 1; c = [2 4 8];
y_correct = [0.2409 0.4450 0.7057];
F = view_factor2(a,b,c);
for i = 1:numel(y_correct)
assert(F(i) < (y_correct(i) + 1e-4))
assert(F(i) > (y_correct(i) - 1e-4))
end
|
3 | Pass |
a = [1 2 5 10];
b = [2 5 2 5];
c = [6 6 10 10];
y_correct = [0.9435 0.7582 0.7036 0.4384];
F = view_factor2(a,b,c);
for i = 1:numel(y_correct)
assert(F(i) < (y_correct(i) + 1e-4))
assert(F(i) > (y_correct(i) - 1e-4))
end
|
3076 Solvers
Remove the two elements next to NaN value
411 Solvers
216 Solvers
270 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!