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))
|
1600 Solvers
1223 Solvers
Arrange Vector in descending order
4075 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Given a matrix, return the last eigen value
175 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!