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.
2 つのファイルがあります。1 つは x 座標、もう 1 つは y 座標です。
gnuplot を使用して、この 2 つのファイルを 1 つのグラフにプロットする方法はありますか? または、この 2 つのファイルを行ごとに連結する方法はありますか?
ありがとう
gnuplot では、あるファイルの x 座標と別のファイルの y 座標をネイティブにプロットする方法はありません。
bash のようなシェルを使用している場合は、次のコマンドを使用できます。
paste x_data.dat y_data.dat > xy_data.dat
行ごとにファイルを結合します。このコマンドを gnuplot スクリプトに入れたい場合は、次のようにできます。
plot "<paste x_data.dat y_data.dat"