-
I see little mentioned about text/labels. Is there a way to have LaTeX label and annotate the plots? -marcel |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
@mhx-gh Yep, this is inherited exactly from matplotlib, which supports a very good subset of latex. Just put latex math formatting between '$', and it should all work. Several of the examples use latex for labels. Note that some escape sequences (say, |
Beta Was this translation helpful? Give feedback.
-
That was my next question: would wxmplot be fast enough to incrementally plot the data from a (SPICE) circuitsimulator working in parallel. Typical data volume is 100MB, could be 8GB, so smart data handling would be needed. (I ask because Revolution EDA says it is using wxmplot). |
Beta Was this translation helpful? Give feedback.
-
@mhx-gh I would suggest trying it. The demo and stripchart examples are pretty simple. On newish machines, the demo giving 30 updates per second seems pretty common, though that will depend some on gpu and cpu. As it turns out, image display (as in the example For sure, naive use of matplotlib code can be slow. With some care, it is not too hard to make it be "fast enough" for displaying data. |
Beta Was this translation helpful? Give feedback.
@mhx-gh Yep, this is inherited exactly from matplotlib, which supports a very good subset of latex. Just put latex math formatting between '$', and it should all work. Several of the examples use latex for labels.
Note that some escape sequences (say,
\t
) would be interpreted as python characters, so it is generally safest to user
-strings, so that labels might best be done with something liker'$\phi(\tau)$ (degrees)'