How to reverse a duration?

e.g. c = minutes(2) gives a duration variable: c = 2 min... How to reverse it and get just an integer of 2 ?

 Accepted Answer

Stephan
Stephan on 28 Aug 2018
Edited: Stephan on 28 Aug 2018
Hi,
doing the same with a duration gives a double:
a = minutes(2)
whos a
b = minutes(a)
whos b
See also here:
Best regards
Stephan

More Answers (1)

Kevin Chng
Kevin Chng on 28 Aug 2018
c = minutes(2) minutes(c)
it will give you back the integer....

Products

Asked:

on 28 Aug 2018

Answered:

on 28 Aug 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!