- 积分
- 55945
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-6-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
LaTeX是排版常用的语法,科学计算软件中也常用它来写数学公式(比如MatLab, Matplotlib等),MeteoInfo通过调用JMathLaTeX库也可以实现这样的功能。LaTeX的语法介绍可以参考此网页:http://matplotlib.org/users/mathtext.html
下面是两个例子:
脚本程序:
- def f(x, c):
- m1 = sin(2*pi*x)
- m2 = exp(-c*x)
- return m1 * m2
-
- x = linspace(0, 4, 100)
- sigma = 0.5
- plot(x, f(x, sigma), 'r', linewidth=2)
- xlabel(r'$\rm{time} \ t$', fontsize=16)
- ylabel(r'$\rm{Amplitude} \ f(x)$', fontsize=16)
- title(r'$f(x) \ \rm{is \ damping \ with} \ x$', fontsize=16)
- text(2.0, 0.5, r'$f(x) = \rm{sin}(2 \pi x^2) e^{\sigma x}$', fontsize=20)
- show()
- x = arange(0.01, 1, 0.01)
- y = 0.5*log((1-x)/x)
- scatter(x,y,s=4,label=r'$\alpha =\frac{1}{2}\ln(\frac{1-\varepsilon}{\varepsilon })$')
- xlabel(r'$\varepsilon$',fontsize=20)
- ylabel(r'$\alpha$',fontsize=20)
- xlim(0,1)
- legend()
- show()
|
|