Clear Filters
Clear Filters

Getting error code "unable to interpret LaTeX string..."

2 views (last 30 days)
and am not sure why. I'm trying to add formulas to a graph as fractions using this code:
text(10,.2,'Ea=$\displaystyle\frac{-1.436}{\r}$','interpreter','LaTeX')

Accepted Answer

per isakson
per isakson on 5 Feb 2014
Edited: per isakson on 2 Mar 2014
This produces a result
text(.2,.2,'Ea=$\displaystyle\frac{-1.436}{17}$','interpreter','LaTeX')
With your example
  • Matlab seems to have trouble with "\r"?
  • "10" positions the text outside the default axes.
  1 Comment
cassie
cassie on 5 Feb 2014
You were right on both counts. One: I had my x and y flipped. duh. the other i took out the backslash (don't know why) but this works: text(.3,-10,'Ea=$\displaystyle\frac{-1.436}{r}$','interpreter','LaTeX')

Sign in to comment.

More Answers (0)

Categories

Find more on Environment and Settings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!