Explanation

isglobal has been removed. Avoid conditions in your code that check variable scope.


Suggested Action

Refactor any code that uses isglobal.   If you need to convert your code quickly in the short term, replace isglobal with ~isempty(whos('global','variable')).  However, you should refactor your code to avoid conditional checks on variable scope.