Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x1 = [11 10 2];
x2 = [4 4 3];
y_correct = zeros(3,3,3);
y_correct(:,:,1) = [44 44 33; 40 40 30; 8 8 6];
y_correct(:,:,2) = [704 704 297; 640 640 270; 128 128 54];
y_correct(:,:,3) = [96.8 96.8 72.6; 80 80 60; 3.2 3.2 2.4];
assert(sum(sum(sum(abs(your_fcn_name(x1,x2)-y_correct))))<1e-3)
t1 =
44 44 33
40 40 30
8 8 6
t2 =
704 704 297
640 640 270
128 128 54
t3 =
96.8000 96.8000 72.6000
80.0000 80.0000 60.0000
3.2000 3.2000 2.4000
y =
44 44 33
40 40 30
8 8 6
y(:,:,1) =
44 44 33
40 40 30
8 8 6
y(:,:,2) =
704 704 297
640 640 270
128 128 54
y(:,:,1) =
44 44 33
40 40 30
8 8 6
y(:,:,2) =
704 704 297
640 640 270
128 128 54
y(:,:,3) =
96.8000 96.8000 72.6000
80.0000 80.0000 60.0000
3.2000 3.2000 2.4000
|
2 | Pass |
x1 = [1 2 3];
x2 = [1 5 9];
y_correct = zeros(3,3,3);
y_correct(:,:,1) = [1 5 9; 2 10 18; 3 15 27];
y_correct(:,:,2) = [1 125 729; 2 250 1458; 3 375 2187];
y_correct(:,:,3) = [0.2 1.0 1.8; 0.8 4.0 7.2; 1.8 9.0 16.2];
assert(sum(sum(sum(abs(your_fcn_name(x1,x2)-y_correct))))<1e-3)
t1 =
1 5 9
2 10 18
3 15 27
t2 =
1 125 729
2 250 1458
3 375 2187
t3 =
0.2000 1.0000 1.8000
0.8000 4.0000 7.2000
1.8000 9.0000 16.2000
y =
1 5 9
2 10 18
3 15 27
y(:,:,1) =
1 5 9
2 10 18
3 15 27
y(:,:,2) =
1 125 729
2 250 1458
3 375 2187
y(:,:,1) =
1 5 9
2 10 18
3 15 27
y(:,:,2) =
1 125 729
2 250 1458
3 375 2187
y(:,:,3) =
0.2000 1.0000 1.8000
0.8000 4.0000 7.2000
1.8000 9.0000 16.2000
|
3 | Pass |
x1 = [-4 7 9];
x2 = [3 2 11];
y_correct = zeros(3,3,3);
y_correct(:,:,1) = [-12 -8 -44; 21 14 77; 27 18 99];
y_correct(:,:,2) = [-108 -32 -5324; 189 56 9317; 243 72 11979];
y_correct(:,:,3) = [9.6 6.4 35.2; 29.4 19.6 107.8; 48.6 32.4 178.2];
assert(sum(sum(sum(abs(your_fcn_name(x1,x2)-y_correct))))<1e-3)
t1 =
-12 -8 -44
21 14 77
27 18 99
t2 =
-108 -32 -5324
189 56 9317
243 72 11979
t3 =
9.6000 6.4000 35.2000
29.4000 19.6000 107.8000
48.6000 32.4000 178.2000
y =
-12 -8 -44
21 14 77
27 18 99
y(:,:,1) =
-12 -8 -44
21 14 77
27 18 99
y(:,:,2) =
-108 -32 -5324
189 56 9317
243 72 11979
y(:,:,1) =
-12 -8 -44
21 14 77
27 18 99
y(:,:,2) =
-108 -32 -5324
189 56 9317
243 72 11979
y(:,:,3) =
9.6000 6.4000 35.2000
29.4000 19.6000 107.8000
48.6000 32.4000 178.2000
|
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
464 Solvers
Output any real number that is neither positive nor negative
316 Solvers
484 Solvers
1221 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!