How do I typeset "x=A\b" in mcode, which represents "matrix division" in MATLAB? Here is a MWE:
\documentclass[12pt]{report}
\usepackage{amsthm,amsmath, amssymb, paralist, fancybox, listings, mathtools, verbatim, textcomp}
\usepackage{mcode}
\usepackage[unicode,pdfborder={0 0 0 0}, colorlinks=true, urlcolor=red, linkcolor=black]{hyperref}
\usepackage{float}
\usepackage[font=small,labelsep=none]{caption}
\lstset{language=Matlab}
\begin{document}
In MATLAB, it can be solved by executing the statement \mcode{x = A \ b}
\end{document}

mcode.stypackage. Do you have that? Second, what kind of result are you expecting from\mcode{x = A \ b}. It doesn't appear thatmcode.styis a standard package. But I did find a copy posted at this site – A.Ellett Jul 13 '13 at 01:19mcodeis available from MathWorks. – Werner Jul 13 '13 at 01:26\mcodeto the\lstinlinecommand which is actually doing the formatting. – A.Ellett Jul 13 '13 at 03:54