world.dem

来自「支持向量机初学者可以看看,用于可以用于C-SVM分类、?-SVM分类、?-SVM」· DEM 代码 · 共 52 行

DEM
52
字号
## $Id: world.dem,v 1.1.1.1.2.3 2001/12/04 14:12:53 lhecking Exp $##set title "Gnuplot Correspondences"set nokeyset noborderset noyzeroaxisset noxticsset noytics## plot world map and correspondent locations as a +plot 'world.dat' with lines 3 4, 'world.cor' with points 1 2set title ""set keyset borderset yzeroaxisset xticsset yticspause -1 "Hit return to continue"## plot a '3D version using spherical coordinate system' of the world.set angles degreesset title "3D version using spherical coordinate system"set ticslevel 0set view 70,40,0.8,1.2set mapping sphericalset parametricset samples 32set isosamples 9set urange [-90:90]set vrange [0:360]splot cos(u)*cos(v),cos(u)*sin(v),sin(u) with lines 5 6,\'world.dat' with lines 3 4, 'world.cor' with points 1 2pause -1 "Hit return to continue"## plot a '3D version using cylindrical coordinate system' of the world.set title "3D version using cylindrical coordinate system"set ticslevel 0.0set view 70,40,0.8,1.2set mapping cylindricalset parametricset samples 32set isosamples 9set urange [-180:180]set vrange [-90:90]splot cos(u),sin(u),v with lines 5 6,\'world.dat' with lines 3 4, 'world.cor' with points 1 2pause -1 "Hit return to continue"reset

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?