Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 962 Bytes

课前准备.md

File metadata and controls

19 lines (12 loc) · 962 Bytes

要使用到软件的下载地址如下:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

  1. Windows 版本: https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.1.0-Windows-x86_64.exe

  2. Mac 版本: https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.1.0-MacOSX-x86_64.pkg

  3. Linux 版本:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-5.1.0-Linux-x86.sh

希望大家可以完成作业: Spyder 中输出

import numpy as np
import matplotlib.pyplot as plt
t=np.arange(0.,4.,0.1)
plt.plot(t,t,t,t+2,t,t**2)
#I am a picture, I am a picture, I am a picture.