Python plot3D在同一窗口中连接成功绘图

时间:2018-10-17 18:47:05

标签: python matplotlib plot mplot3d

我希望我的代码能够绘制来自多个txt文件的数据。我继续进行for循环,遍历数组的每个术语,并将每个文件的名称作为字符串。在for循环中,将打开文件,并使用三个变量a [],b [],c []绘制数据。下一次迭代将替换相同(我想这是问题所在)变量中的数据,并绘制信息。

Result obtained from my code, you can see that there are discontinuities in the functions joining points in the curves that should be different ones with straight lines.

这是我使用的代码,可能有plot3D的功能让它知道您要绘制的新事物是不同的图?这就是我想要的。

 for(int i = 0; i < arr.length; i++) {
    arr[i] = sc.nextInt();
 }

谢谢!

0 个答案:

没有答案