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 | 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))
|
Permute diagonal and antidiagonal
224 Solvers
238 Solvers
2101 Solvers
Sum of odd numbers in a matrix
311 Solvers
Matlab Basics - y as a function of x
339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!