Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
index = [1 2 ; 3 4];
vector= [0 3 5 7];
y_correct =[0 3; 5 7];
assert(isequal(place_number(index,vector),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.]
[> In unix (line 32)
In place_number (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
index = [1 2 ; 3 4;5 6; 1 2];;
vector= [0 3 5 7 3 2];
y_correct =[0 3; 5 7;3 2; 0 3];;
assert(isequal(place_number(index,vector),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.]
[> In unix (line 32)
In place_number (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
index = [1 2 3; 2 1 3];
vector= [0 3 5 ];
y_correct =[0 3 5 ;3 0 5];
assert(isequal(place_number(index,vector),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.]
[> In unix (line 32)
In place_number (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
index = [1 2 3; 4 5 6; 1 2 3;4 5 6];
vector= 1:6;
y_correct =index;
assert(isequal(place_number(index,vector),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.]
[> In unix (line 32)
In place_number (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
|
5 | Pass |
index = [1 2 1 2; 1 2 2 2; 1 2 1 1];
vector= [6 7];
y_correct =index+5;
assert(isequal(place_number(index,vector),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.]
[> In unix (line 32)
In place_number (line 2)
In ScoringEngineTestPoint5 (line 4)
In solutionTest (line 11)]
|
Find the numeric mean of the prime numbers in a matrix.
5904 Solvers
102 Solvers
Given a 4x4 matrix, swap the two middle columns
298 Solvers
Put Two 1D matrices into one 1D matrix
91 Solvers
124 Solvers