C:\Users\86135\AppData\Local\Temp\ipykernel_19564\445934344.py:42: MatplotlibDeprecationWarning: Calling gca() with keyword arguments was deprecated in Matplotlib 3.4. Starting two minor releases later, gca() will take no keyword arguments. The gca() function should only be used to get the current axes, or if no axes exist, create new axes with default keyword arguments. To create a new axes with non-default arguments, use plt.axes() or plt.subplot(). ax = fig.gca(projection='3d')
时间: 2023-06-13 09:08:42 浏览: 431
GMDSS通信设备与业务:第4章 船用VHF通信设备.ppt
这是Matplotlib中的一条DeprecationWarning,意思是使用`gca()`函数时不应该再使用关键字参数。在Matplotlib 3.4版本之后,使用关键字参数会报错。建议使用`plt.axes()`或`plt.subplot()`来创建具有非默认参数的新轴。如果想要获取当前轴,可以直接调用`gca()`函数,不需要传入任何参数。
阅读全文