I want to plot a X-Y Data in a 2D plot in Gmsh where: <br>X-Y Values are:<br><br>x1 =  0.0,    y1 =  0.0<br>x2 = -0.1,    y2 = -0.1<br>x3 = -0.2,    y3 = -0.4<br>x4 = -0.3,    y4 =  2.0<br>etc.<br><br>I create a .pos file with this:<br>
<br>View "X-Y Plot" {<br>  SP(0.0,0.0,0.0){0.1};<br>  SP(-0.1,0.0,0.0){-0.1};<br>  SP(-0.2,0.0,0.0){-0.4};<br>  SP(-0.3,0.0,0.0){2.0};<br>etc...<br>};<br><br>But in X Axis shows the values: 0, 1, 2, 3... etc instead of 0.0, -0.1, -0.2, -0.3.<br>
<br>Where is the bug?<br>