|
From: Hans-Bernhard B. <HBB...@t-...> - 2010-07-29 19:49:47
|
On 29.07.2010 16:37, wrote Amir Sabbagh: > set fit logfile "Y:\\User.ASH\\controllo foratura SM ring\\Pesatura > 21_07\\plots\\fitpuntoMED.log" set fit logfile 'Y:/User.ASH/controllo foratura SM ring/Pesatura 21_07/plots/fitpuntoMED.log' would type so much easier... And if you put a cd 'Y:/User.ASH/controllo foratura SM ring/Pesatura 21_07/plots' at the beginning of the file, you can save even more needless typing. > set label 1 "Fitted Circle:\nR = R\nX_C = 0\nY_C = 0" at 390, -0.11, 0.375 You'll want to change that to get the actual fit results into the label string. > plot "puntoMED.txt" title "Median Point (mm)" with points pt 1 lt 7, \ > g(x,y) title "Circular fit" > what I am doing wrong? You're trying to use the 2D plot command to display a 3D function. You want to use 'splot' instead. |