<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Le 28/04/2016 08:19, Shamika Mohanan a
      écrit :<br>
    </div>
    <blockquote
cite="mid:CAHbxmFS6idHy6Ot3SywCvcgjR5d4CAw-QgQx9JDO8pJs=WbViQ@mail.gmail.com"
      type="cite">
      <div dir="ltr">
        <div>
          <div>
            <div>
              <div>How do I set the minimum and maximum values for the
                axes in a plot?<br>
                <br>
              </div>
              When I use the plot command as <br>
              <br>
            </div>
            plot(x1,y1,x2,y2)<br>
            <br>
          </div>
          I get the plot where x axis is from 0 to 100 and y axis is
          from -20 to 120. How do I set the axis from 25 to 100 for both
          x and y axes?<br>
          <br>
        </div>
        Shamika<br>
      </div>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:users@lists.scilab.org">users@lists.scilab.org</a>
<a class="moz-txt-link-freetext" href="http://lists.scilab.org/mailman/listinfo/users">http://lists.scilab.org/mailman/listinfo/users</a>
</pre>
    </blockquote>
    after the plot you can do<br>
    ax=gca(),// gat the handle on the current axes<br>
    ax.data_bounds=[25 25;100 100];<br>
    <br>
    Regards<br>
  </body>
</html>