matplot的使用,类matlab api

-- 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()

matplot的使用,类matlab api_第1张图片
image.png

使用类matlab api画出的图形

也可以使用subplot函数,以及定义线的形状

subplot(1,2,1)
plot(x,y,'r--')
subplot(1,2,2)
plot(y,x,'g*-')

matplot的使用,类matlab api_第2张图片
image.png

你可能感兴趣的:(matplot的使用,类matlab api)