<code>
-- coding: utf-8 --
"""
Created on Fri Apr 28 20:08:07 2017
@author: Administrator
"""
"""使用类MATLAB API"""
from pylab import *
from numpy import *
x = linspace(0,5,10)
y = x**2
figure()
plot(x,y,'r')
xlabel('x')
ylabel('y')
title('title')
show()
<code>
使用类matlab api画出的图形
也可以使用subplot函数,以及定义线的形状
<code>
subplot(1,2,1)
plot(x,y,'r--')
subplot(1,2,2)
plot(y,x,'g*-')
<code>