原文链接:http://blog.csdn.net/ikerpeng/article/details/20523679 参考资料:http://matplotlib.org/gallery.html matplotlib画廊 有少量修改,如有疑问,请访问原作者! 首先补充一下:两种体系7种颜色 r g b y m c k (红,绿,蓝,黄,品红,青,黑) 在科研的过程中,坐标系中的XY不一定就是等尺度的.例如在声波中对Y轴取对数.肆意我们也必须知道这种坐标系如何画出来的. 1:对数坐标图
pylab 提供了比较强大的画图功能,但是函数和参数都比较多,很容易搞混.我们平常使用最多的应该是画线了.下面,简单的对一些常用的划线函数进行了封装,方便使用. # -*- coding: utf-8 -*- import pylab import random class MiniPlotTool : ''' A mini tool to draw lines using pylab ''' basecolors = ['red','green','yellow','blue','black'
import numpy as np import scipy.io as io creat = locals() tmp = io.loadmat("all.mat") for i in tmp: print i creat[i] = tmp[i] 1D-array转置 np.reshape(xx, (-, ))
import numpy as np from PIL import Image import matplotlib.pyplot as plt import math size = 300 new_im = Image.new("RGBA",(size,size)) #创建一个空的图片 a_img = np.array(new_im) #获取空图片的数据 m = (size-50)/2 #函数的摆幅 for i in range(0,size): x = 2 * math.pi *
画饼图 import turtle t = turtle.Pen() for i in range(5): t.penup() t.goto(0, -i*30) t.pendown() t.circle(i*30+30) turtle.done() 画棋盘 import turtle t = turtle.Pen() widthall = 200 width = 20 num = widthall // 20 * 2 + 1 t.speed(10) for r in range(num): t.