How to check MATLAB version and choose compatible functions?

158 次查看(过去 30 天)
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?

采纳的回答

Sean de Wolski
Sean de Wolski 2019-11-11
编辑:Stefanie Schwarz 2023-9-14

更多回答(2 个)

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

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

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by