The arrays x and y contain time values in the form of:
x = [hours minutes seconds]
Create the output z which contains the absolute difference in time between x and y in seconds.
For example:
x = [10 5 31]; y = [10 4 31];
z should be:
z = 60;
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers46
Suggested Problems
-
Project Euler: Problem 7, Nth prime
1748 Solvers
-
Back to basics 21 - Matrix replicating
1788 Solvers
-
Return the first and last characters of a character array
11792 Solvers
-
The Answer to Life, the Universe, and Everything
574 Solvers
-
Append two matrix as shown below example
235 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I added more test cases to make this problem less trivial.