This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x1 = 1;
x2 = 1;
y_correct = zeros(3,3,3);
y_correct(:,:,1) = 1;
y_correct(:,:,1) = 0;
y_correct(:,:,1) = 1/5;
assert(isequal(your_fcn_name(x),y_correct))
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
2 | Pass |
%%
x1 = 2;
x2 = 1;
y_correct = zeros(3,3,3)
y_correct(:,:,1) = 2;
y_correct(:,:,1) = 1;
y_correct(:,:,1) = 2/5;
assert(isequal(your_fcn_name(x),y_correct))
y_correct(:,:,1) =
0 0 0
0 0 0
0 0 0
y_correct(:,:,2) =
0 0 0
0 0 0
0 0 0
y_correct(:,:,3) =
0 0 0
0 0 0
0 0 0
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function
to avoid a potential name conflict.]
|
Back to basics 13 - Input variables
203 Solvers
Duplicate each element of a vector.
455 Solvers
Magic is simple (for beginners)
1112 Solvers
253 Solvers
07 - Common functions and indexing 5
255 Solvers