<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#330000">
    On 27/02/2012 15:34, grivet wrote:
    <blockquote cite="mid:4F4B9462.4090607@cnrs-orleans.fr" type="cite">Thank
      you Adrien, your hint is just what was needed:
      <br>
      <br>
      ticx = 0:1:5; ticxl = string(ticx);
      <br>
      .....
      <br>
      temp = a.x_ticks;
      <br>
      temp.locations=ticx;
      <br>
      temp.labels=ticxl;
      <br>
      a.x_ticks = temp;
      <br>
      <br>
      works like a charm; however, the tlist doesn't work for me:
      <br>
      <br>
      a.x_ticks=tlist(["ticks""locations""labels"],ticx,ticxl);
      <br>
      <br>
    </blockquote>
    hi<br>
    <br>
    it appears you forgot spaces or commas, try one of these:<br>
    tlist(["ticks"    "locations"     "labels"],ticx,ticxl);
    <br>
    <br>
    tlist(["ticks"  ,  "locations"  ,   "labels"],ticx,ticxl);
    <br>
    <blockquote cite="mid:4F4B9462.4090607@cnrs-orleans.fr" type="cite">leads
      to
      <br>
      <br>
      a.x_ticks=tlist(["ticks""locations""labels"],ticx,ticxl);
      <br>
                                                               !--error
      144
      <br>
      Opération non définie pour les opérandes données
      <br>
      .
      <br>
      Are there constraints on the vectors ticx and ticxl?
      <br>
      <br>
      <br>
      --
      <br>
      To unsubscribe from this mailing-list, please send an empty mail
      to
      <br>
      <a class="moz-txt-link-abbreviated" href="mailto:users-unsubscribe@lists.scilab.org">users-unsubscribe@lists.scilab.org</a>
      <br>
      To check the archives of this mailing list, see
      <br>
      <a class="moz-txt-link-freetext" href="http://mailinglists.scilab.org/">http://mailinglists.scilab.org/</a>
      <br>
    </blockquote>
    <br>
  </body>
</html>