gpt4 book ai didi

plot - Mathematica 中带有两个数据集的 ListPlot

转载 作者:行者123 更新时间:2023-12-01 06:56:14 34 4
gpt4 key购买 nike

假设我有理由保持数据集独立,是否有更简洁的方法来执行以下操作?:

x = {1, 2, 3};
y = {1, 4, 9};

ListPlot[Partition[Riffle[x, y], 2]]

谢谢!

最佳答案

我不认为 Timo 的解决方案是标准的。
这里有两种方法,使用 TransposeThread ,我经常看到使用。

x = {1, 2, 3};
y = {1, 4, 9};
Transpose[{x, y}]
Thread[{x, y}]

输出:
{{1, 1}, {2, 4}, {3, 9}}
{{1, 1}, {2, 4}, {3, 9}}

这两种方法都避免明确引用数据的长度,这在我的书中是加号的。

关于plot - Mathematica 中带有两个数据集的 ListPlot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2602991/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com