Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [1 2 1 15];
b = 1;
assert(isequal(most_change(a),b))
a =
0.2500 2.0000 1.0000 15.0000
a =
0.2500 0.1000 1.0000 15.0000
a =
0.2500 0.1000 0.1000 15.0000
a =
0.2500 0.1000 0.1000 0.1500
|
2 | Pass |
a = [ 1 2 1 15;
0 8 5 9];
b = 2;
assert(isequal(most_change(a),b))
a =
0.2500 2.0000 1.0000 15.0000
0 8.0000 5.0000 9.0000
a =
0.2500 0.1000 1.0000 15.0000
0 0.4000 5.0000 9.0000
a =
0.2500 0.1000 0.1000 15.0000
0 0.4000 0.5000 9.0000
a =
0.2500 0.1000 0.1000 0.1500
0 0.4000 0.5000 0.0900
|
3 | Pass |
a = [ 1 22 1 15;
12 3 13 7;
10 8 23 99];
b = 3;
assert(isequal(most_change(a),b))
a =
0.2500 22.0000 1.0000 15.0000
3.0000 3.0000 13.0000 7.0000
2.5000 8.0000 23.0000 99.0000
a =
0.2500 1.1000 1.0000 15.0000
3.0000 0.1500 13.0000 7.0000
2.5000 0.4000 23.0000 99.0000
a =
0.2500 1.1000 0.1000 15.0000
3.0000 0.1500 1.3000 7.0000
2.5000 0.4000 2.3000 99.0000
a =
0.2500 1.1000 0.1000 0.1500
3.0000 0.1500 1.3000 0.0700
2.5000 0.4000 2.3000 0.9900
|
4 | Pass |
a = [ 1 0 0 0; 0 0 0 24];
b = 1;
assert(isequal(most_change(a),b))
a =
0.2500 0 0 0
0 0 0 24.0000
a =
0.2500 0 0 0
0 0 0 24.0000
a =
0.2500 0 0 0
0 0 0 24.0000
a =
0.2500 0 0 0
0 0 0 0.2400
|
5 | Pass |
a = [ 0 1 2 1; 0 2 1 1];
c = 1;
assert(isequal(most_change(a),c))
a =
0 1 2 1
0 2 1 1
a =
0 0.0500 2.0000 1.0000
0 0.1000 1.0000 1.0000
a =
0 0.0500 0.2000 1.0000
0 0.1000 0.1000 1.0000
a =
0 0.0500 0.2000 0.0100
0 0.1000 0.1000 0.0100
|
6 | Pass |
% There is a lot of confusion about this problem. Watch this.
a = [0 1 0 0; 0 0 1 0];
c = 2;
assert(isequal(most_change(a),c))
% Now go back and read the problem description carefully.
a =
0 1 0 0
0 0 1 0
a =
0 0.0500 0 0
0 0 1.0000 0
a =
0 0.0500 0 0
0 0 0.1000 0
a =
0 0.0500 0 0
0 0 0.1000 0
|
7 | Pass |
a = [ 2 1 1 1;
1 2 1 1;
1 1 2 1;
1 1 1 2;
4 0 0 0];
c = 5;
assert(isequal(most_change(a),c))
a =
0.5000 1.0000 1.0000 1.0000
0.2500 2.0000 1.0000 1.0000
0.2500 1.0000 2.0000 1.0000
0.2500 1.0000 1.0000 2.0000
1.0000 0 0 0
a =
0.5000 0.0500 1.0000 1.0000
0.2500 0.1000 1.0000 1.0000
0.2500 0.0500 2.0000 1.0000
0.2500 0.0500 1.0000 2.0000
1.0000 0 0 0
a =
0.5000 0.0500 0.1000 1.0000
0.2500 0.1000 0.1000 1.0000
0.2500 0.0500 0.2000 1.0000
0.2500 0.0500 0.1000 2.0000
1.0000 0 0 0
a =
0.5000 0.0500 0.1000 0.0100
0.2500 0.1000 0.1000 0.0100
0.2500 0.0500 0.2000 0.0100
0.2500 0.0500 0.1000 0.0200
1.0000 0 0 0
|
1600 Solvers
Magic is simple (for beginners)
2749 Solvers
382 Solvers
Matlab Basics - y as a function of x
339 Solvers
find the surface area of a cube
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!