def has_matlab(): """ Test if Matlab is available. EXAMPLES:: sage: from sage.doctest.external import has_matlab sage: has_matlab() # random, optional - matlab True """ from sage.interfaces.matlab import matlab try: matlab('2+3') return True except Exception: return False
def has_matlab(): """ Test if Matlab is available. EXAMPLES:: sage: from sage.doctest.external import has_matlab sage: has_matlab() # random True """ from sage.interfaces.matlab import matlab try: matlab('2+3') return True except Exception: return False