[Tex/LaTex] How to get “MATLAB” symbol in Latex

MATLABsymbols

Looking for something similar to \LaTeX. It is correct in this section from my textbook. The way my textbook has it is what I'm looking for:

Best Answer

Since you say you're looking for a command similar to \LaTeX, you can define something like

\newcommand{\MATLAB}{\textsc{Matlab}\xspace}

Here, I have used the xspace package to prevent the \MATLAB command from "eating" spaces after it. Maybe there is a cleaner solution, but this definitely works fine. Just add also

\usepackage{xspace}

to the preamble.