Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A=zeros(100,100,100);
i=randi(100);
j=randi(100);
k=randi(100);
A(i,j,k)=1;
y=find1number(A)
assert(isequal(y,[i,j,k]))
y =
6 15 29
|
2 | Pass |
A=zeros(100,100,100);
i=randi(100);
j=randi(100);
k=randi(100);
A(i,j,k)=1;
y=find1number(A)
assert(isequal(y,[i,j,k]))
y =
23 29 44
|
Similar Triangles - find the height of the tree
203 Solvers
07 - Common functions and indexing 1
338 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
175 Solvers
1172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!