Time in seconds ode45

13 views (last 30 days)
Shahad Alomani
Shahad Alomani on 26 May 2020
Commented: Star Strider on 26 May 2020
Hi,
How can I create an array of 10 seconds start from 0 second increment by 0.1 seconds to 10 seconds?
Thank you
I tried to use seconds function but it didn't work I need this time for ode45 tspan

Accepted Answer

Star Strider
Star Strider on 26 May 2020
Create the ‘tspan’ argument as a vector of more than two elements:
tspan = 0 : 0.1 : 10;
.
  6 Comments
Shahad Alomani
Shahad Alomani on 26 May 2020
Thank you
Star Strider
Star Strider on 26 May 2020
Shahad Alomani — As always, my pleasure!
Steven — Thank you!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!