潇洒手链

文章
7
资源
0
加入时间
2年10月21天

人工智能学习(四)plt.plot()函数使用

plt.plot(x,y,format_string,**kwargs)x轴数据,y轴数据,format_string控制曲线的格式字串format_string 由颜色字符,风格字符,和标记字符plt.plot(dataX,dataY,'.',trainX,trainY, 'p',predictX,predictY,'o')...

20个非常有用的Java程序片段

1. 字符串有整型的相互转换1 String a = String.valueOf(2); //integer to numeric string 2 int i = Integer.parseInt(a); //numeric string to an int2. 向文件末尾添加内容 1 BufferedWriter out = null; ...