1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

gnuplotでのエラー" warning: Skipping data file with no valid points"

Posted at

gnuplotでファイルOOO.txtからx座標,y座標を読み込んで描画したい。

0 0
4 2
5 5
7 8

というファイルpoint.txt用意しました。
さっそくgnuplotで以下を実行しました

 gnuplot> set xrange [-1:5]                          
gnuplot> set yrange [-1:5]                          
gnuplot> plot 'point.txt' using 1:2 with linespoints

そうしたら以下のようなエラーがでてきました。

warning: Skipping data file with no valid points

原因をしばらく考えてみましたがわからなかったのでネットでいろいろ調べてみましたがあまり参考になるものは見つからず、、、
作成元がVScodeだったのでそこをいろいろいじってみました。

VScodeでは簡単に文字コード,改行コードが選べると思います
どうやらこれが原因だったようで文字コードをUTF-8,改行コードをLFと設定したら無事に実行できました!

gnuplotはできることがいっぱいみたいなのでこれから学習していろいろなものを作っていきたいです!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?