摘要: # -*- coding: utf-8 -*-#先画一个线性图 import numpy as np import matplotlib.pyplot as plt x=[0,1] y=[0,1] plt.figure() plt.plot(x,y) plt.xlabel("time(s)") plt.ylabel("value(m)") plt.title("A simple plo... 阅读全文
posted @ 2019-04-15 11:28 康诚嘉士 阅读(154) 评论(0) 推荐(0) 编辑