Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下を使用して、テキスト ファイルから列をロードするとします。
x, y, z = np.loadtxt(myfile, unpack=True)
xの値を増やしyてソートする構文は何ですか?zx
x
y
z
使いたいnumpy.argsort
numpy.argsort
argsortx = np.argsort(x) x, y, z = x[argsortx], y[argsortx], z[argsortx]