0
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】三次元の点を消す

Posted at

gnuplotを使ったときに三次元の図の点や線を消せなくて困ったのでここに書く。

点、線を消す

以下のように with の後に pm3d をつける、または、何もつけないと点も線もなくなる。

test1
set terminal x11
set pm3d map

splot[0:200][0:200] 'file' using 1:2:($3) with pm3d

set out
test2
set terminal x11
set pm3d map

splot[0:200][0:200] 'file' using 1:2:($3) 

set out

このようにすると三次元でも点、線がなくなる。

0
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
0
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?