Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = {'$12,001.87','$0.04','$103,887.55','$0.32'};
b = 115889.78;
assert(abs(moneySum(a)-b) < 1e-4)
c =
'$12,001.87 $0.04 $103,887.55 $0.32'
i =
1 4 12 18 22 30
c =
'12001.87 0.04 103887.55 0.32'
c =
1.0e+05 *
0.1200 0.0000 1.0389 0.0000
b =
1.1589e+05
|
2 | Pass |
a = {'$0.02'};
b = 0.02;
assert(abs(moneySum(a)-b) < 1e-4)
c =
'$0.02'
i =
1
c =
'0.02'
c =
0.0200
b =
0.0200
|
3 | Pass |
a = {'$81.47','$12.69','$91,337.60'};
b = 91431.76;
assert(abs(moneySum(a)-b) < 1e-4)
c =
'$81.47 $12.69 $91,337.60'
i =
1 8 15 18
c =
'81.47 12.69 91337.60'
c =
1.0e+04 *
0.0081 0.0013 9.1338
b =
9.1432e+04
|
875 Solvers
3611 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
Get the elements of diagonal and antidiagonal for any m-by-n matrix
268 Solvers
2466 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!