How does one use multiple persistent variables?

10 views (last 30 days)
Nitesh Panchal
Nitesh Panchal on 24 Oct 2016
Answered: Jan on 25 Oct 2016
I need to store t t-1 and t-2 as different variables

Answers (2)

Walter Roberson
Walter Roberson on 25 Oct 2016
persistent t t_minus_1 t_minus_2

Jan
Jan on 25 Oct 2016
Or
persistent t
persistent t_minus_1
persistent t_minus_2
Walter's and my answer are trivial. Perhaps your forgot to mention a difficult problem.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!