博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【原】在Matplotlib绘图中添加Latex风格公式
阅读量:5937 次
发布时间:2019-06-19

本文共 679 字,大约阅读时间需要 2 分钟。

Matplotlib绘图的过程中,可以为各个轴的Label,图像的Title、Legend等元素添加Latex风格的公式。

只需要在Latex公式的文本前后各增加一个$符号,Matplotlib就可以自动进行解析,示例代码如下:

#!/usr/bin/env python#coding:utf-8"""  Author:  Chaos --
Purpose: 在Matplotlib绘图过程中使用Latex风格的公式 Created: 2014年10月17日"""import matplotlib.pyplot as pltimport numpy as npif __name__ == '__main__': x=np.arange(0.01,1,0.01) y=0.5*np.log((1-x)/x) plt.grid() plt.subplots_adjust(top=0.9) plt.scatter(x,y,label=r'$\alpha =\frac{1}{2}\ln(\frac{1-\varepsilon}{\varepsilon })$') plt.legend() plt.xlabel(r'$\varepsilon$',fontsize=20) plt.ylabel(r'$\alpha$',fontsize=20) plt.xlim(0,1) plt.show()

该程序执行结果如下图所示:

转载地址:http://gfvtx.baihongyu.com/

你可能感兴趣的文章
为jqgrid添加统计金额页脚
查看>>
node js npm 和 cnpm的使用
查看>>
Spring MVC学习-------------訪问到静态的文件
查看>>
Unity应用架构设计(11)——一个网络层的构建
查看>>
运行自己的shell脚本
查看>>
C语言之基本算法26—佩尔方程求解
查看>>
jqMobi(App Framework)入门学习(一)
查看>>
委托的N种写法
查看>>
如何让linux加载当前目录的动态库
查看>>
如何查看dede版本信息
查看>>
基于SIP和RTP协议的开源VOIP之QuteCom简单介绍
查看>>
Leetcode--easy系列9
查看>>
.NET Core程序中使用User Secrets存储敏感数据
查看>>
freeradius 启动报错Refusing to start with libssl version OpenSSL 1.0.1
查看>>
python 操作redis之——有序集合(sorted set) (七)
查看>>
Python 爬虫实例(1)—— 爬取百度图片
查看>>
setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key
查看>>
Linux环境变量设置中配置文件分析(/etc/profile,~/.bashrc等)(转)
查看>>
详解执行计划
查看>>
petri网
查看>>