Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = '1+.25/12+1.25^2'
y = '1/12+.25+2.25'
z=exactly(x,y)
z_correct = 1;
assert(isequal(z,z_correct))
x =
1+.25/12+1.25^2
y =
1/12+.25+2.25
z =
1
|
2 | Pass |
x = '1+.25/12+1.25^2'
y = '1/12+.25000001+2.25'
z=exactly(x,y)
z_correct = 0;
assert(isequal(z,z_correct))
x =
1+.25/12+1.25^2
y =
1/12+.25000001+2.25
z =
0
|
6360 Solvers
253 Solvers
Generate a random matrix A of (1,-1)
210 Solvers
413 Solvers
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!