How to check MATLAB version and choose compatible functions?

조회 수: 117 (최근 30일)
Abdul Basith Ashraf
Abdul Basith Ashraf 2019년 11월 11일
편집: Stefanie Schwarz 2023년 9월 14일
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에서 Subplots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by