This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
X='+68768686834554';
Y='+76574535435398';
Z_correct='-7805848600844';
assert(isequal(mysub(X,Y),Z_correct))
X1 =
6.8769e+13
Y1 =
7.6575e+13
Z1 =
-7.8058e+12
Z =
'-7805848600844'
|
2 | Pass |
X='1';
Y='2';
Z_correct ='-1';
assert(isequal(mysub(X,Y),Z_correct))
X1 =
1
Y1 =
2
Z1 =
-1
Z =
'-1'
|
3 | Pass |
X='100';
Y='20';
Z_correct ='80';
assert(isequal(mysub(X,Y),Z_correct))
X1 =
100
Y1 =
20
Z1 =
80
Z =
'80'
|
1091 Solvers
369 Solvers
445 Solvers
1174 Solvers
A Simple Tide Gauge with MATLAB
342 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!