How to check MATLAB version and choose compatible functions?

180 Ansichten (letzte 30 Tage)
sgtitle is available in MATLAB R2019b but not in R2018a
suptitle is available in MATLAB R2018a but not in R2019b.
If I'm distributing, how can I check the release to use the compatible function?

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 11 Nov. 2019
Bearbeitet: Stefanie Schwarz am 14 Sep. 2023

Weitere Antworten (2)

Oli Fairfax
Oli Fairfax am 23 Aug. 2021
You can also use the following to keep it on one line:
version('-release')
ans = '2021a'

Abdul Basith Ashraf
Abdul Basith Ashraf am 11 Nov. 2019
v= ver('MATLAB');
if v.Release=="(R2018a)"
%Code
elseif v.Release=="(R2019b)"
%Code
end

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by