import matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3Dimport numpy as np #bbb=[1 if (i <=0.5 or i >=1.5) else 0 for i in D def fun(x, y): value= x**2+y**2 return value fig1 = plt.figure()ax = Axes3D(fig1)X, Y = np.mgrid[-4:4:40j, -4:
一.画二维图 1.原始数据(x,y) import matplotlib.pyplot as plt import numpy as np #数据 X = np.array(list(i for i in range(6))) Y = np.array([10,30,20,50,100,120]) 2.先对横坐标x进行扩充数据量,采用linspace #插值 from scipy.interpolate import spline X_new = np.linspace(X.min(),X.ma
近期为发小论文一直在研究作业调度问题,好不easy把数据搞出来了,结果又被画甘特图给难住了,查了各种资料.anygantt,highchart.Jfree chart等都试了,效果都不咋好.无意中留意到网上实用matlab画甘特图的,自己改动了一下.感觉画出的图还能够.感觉还是matlab好用啊.代码简单,函数库强大.废话少说直接上代码. %fileName:mt06_final.mt06 %fileDescription:create a gatt chart whith the data g