- 博客(3)
- 收藏
- 关注
原创 Matplotlib画图库
绘图三步骤:创建画板 绘制图表 配置图例创建画板1. 创建画板对象fig = plt.figure()2. 创建子图对象- 2.1 如果只有一个子图ax = plt.axes() # 创建二维子图ax = plt.axes(projection='3d') # 创建三维子图from mpl_toolkits.mplot3d import Axes3Dax = Axes3D(fig) # 创建三维子图-2.2 如果有多个子图ax = plt.sub.
2021-06-30 14:52:51 287
原创 junit报错Found multiple @SpringBootConfiguration annotated classes
junit报错Found multiple @SpringBootConfiguration annotated classes有可能是因为依赖的jar包中有springboot启动类,junit不知道加载哪个启动类,需要在junit的@SpringBootTest注解上指定启动类。@RunWith(SpringRunner.class)@SpringBootTest(classes ...
2020-02-25 09:58:05 4923 2
原创 递归算法(Java代码实现)
三角数字【1,3,6,10,15......】规律:f(n) = f(n-1) + n;结束条件:f(1) = 1;package cn.itcast;public class Recursion { public static int getNumber(int n) { // 结束条件 if (n == 1) { return 1; } ...
2018-10-12 17:39:48 3380
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人