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

 採用された回答

Star Strider
Star Strider 2020 年 5 月 26 日

0 投票

Create the ‘tspan’ argument as a vector of more than two elements:
tspan = 0 : 0.1 : 10;
.

6 件のコメント

Shahad Alomani
Shahad Alomani 2020 年 5 月 26 日
But matlab can't understand if 10 is a seconds and this is the issue!
Steven Lord
Steven Lord 2020 年 5 月 26 日
Why is that an issue? What problem / error / etc. are you experiencing when you're using a time span vector like Star Strider showed?
Shahad Alomani
Shahad Alomani 2020 年 5 月 26 日
no error, tspan is only take t0 and tf which final value, I need to increment it with 0.1 and matlab can't understand that 10 is in seconds. I need the 10 to be in unit of seconds.
Steven Lord
Steven Lord 2020 年 5 月 26 日
The ODE solvers neither know nor care what units the time span vector is in. It could be seconds. It could be nanoseconds. It could be years. It doesn't even need to represent time.
As long as you've written your ODE function so it handles correctly the time value with which the ODE solver calls it you should be okay.
Shahad Alomani
Shahad Alomani 2020 年 5 月 26 日
Thank you
Star Strider
Star Strider 2020 年 5 月 26 日
Shahad Alomani — As always, my pleasure!
Steven — Thank you!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Community Treasure Hunt

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

Start Hunting!

Translated by