<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Hello Héctor<br>
      <br>
      Are you using the latest Scilab 6.0.1 release?<br>
      input() was bugged in previous Scilab 6.0.0+/- releases, but it is
      now fixed:<br>
      <br>
      <font size="-1"><tt>--> function ingres()</tt><tt><br>
        </tt><tt>  > </tt><tt><br>
        </tt><tt>  > A=input ('Ingrese la matriz A   ');</tt><tt><br>
        </tt><tt>  > </tt><tt><br>
        </tt><tt>  > disp(A);</tt><tt><br>
        </tt><tt>  > </tt><tt><br>
        </tt><tt>  > b=input ('Ingrese el vector independiente b  
          ');</tt><tt><br>
        </tt><tt>  > </tt><tt><br>
        </tt><tt>  > disp(b);</tt><tt><br>
        </tt><tt>  > </tt><tt><br>
        </tt><tt>  > </tt><tt><br>
        </tt><tt>  > endfunction</tt><tt><br>
        </tt><br>
        <tt>--> ingres</tt><tt><br>
        </tt><tt>Ingrese la matriz A  
          [4,3,-2,1;3,2,1,5;-2,3,1,2;-5,0,1,1]</tt><tt><br>
        </tt><tt><br>
        </tt><tt>   4.   3.  -2.   1.</tt><tt><br>
        </tt><tt>   3.   2.   1.   5.</tt><tt><br>
        </tt><tt>  -2.   3.   1.   2.</tt><tt><br>
        </tt><tt>  -5.   0.   1.   1.</tt><tt><br>
        </tt><tt><br>
          Ingrese el vector independiente b    [4;-8;-7;-8]</tt><tt><br>
        </tt><tt></tt><tt><br>
        </tt><tt>   4.</tt><tt><br>
        </tt><tt>  -8.</tt><tt><br>
        </tt><tt>  -7.</tt><tt><br>
        </tt><tt>  -8.</tt><tt><br>
        </tt></font><br>
      <br>
      HTH<br>
      Samuel<br>
      <br>
      Le 21/03/2018 à 13:18, Hector R. Lepez a écrit :<br>
    </div>
    <blockquote
      cite="mid:1251921910.4639618.1521634715629@mail.yahoo.com"
      type="cite">
      <div style="font-family:Helvetica Neue, Helvetica, Arial,
        sans-serif;font-size:13px;">
        <div>In SCILAB 6 this code:</div>
        <div><br>
        </div>
        <div>
          <pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(0,0,0);"><pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(176,24,19);">function</span> ingres<span style="color:rgb(0,0,0);text-decoration:underline;"></span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">
</span></pre></span></pre>
        </div>
        <div>
          <pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(0,0,0);"><pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(0,0,0);">A</span><span style="color:rgb(92,92,92);">=</span><span style="color:rgb(174,92,176);text-decoration:underline;">input</span> <span style="color:rgb(74,85,219);">(</span><span style="color:rgb(188,143,143);">'</span><span style="color:rgb(188,143,143);">Ingrese la matriz A   </span><span style="color:rgb(188,143,143);">'</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">;</span><span style="color:rgb(50,185,185);">
</span></pre></span></pre>
        </div>
        <div>
          <pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(0,0,0);"><pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(50,185,185);">disp</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(0,0,0);">A</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">;</span>
</pre></span><span style="color:rgb(0,0,0);">b</span><span style="color:rgb(92,92,92);">=</span><span style="color:rgb(174,92,176);text-decoration:underline;">input</span> <span style="color:rgb(74,85,219);">(</span><span style="color:rgb(188,143,143);">'</span><span style="color:rgb(188,143,143);">Ingrese el vector independiente b   </span><span style="color:rgb(188,143,143);">'</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">;</span></pre>
        </div>
        <div>
          <pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(50,185,185);">disp</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(0,0,0);">b</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">;</span></pre>
        </div>
        <div><br>
        </div>
        <div>
          <pre style="font-family:Monospaced;font-style:normal;font-size:12.0;"><span style="color:rgb(176,24,19);">endfunction</span></pre>
        </div>
        <div><br>
        </div>
        <div><br>
          <div>in console, with 6 version of SCILAB Input function
            faild, i don't know why?? because in older version works
            with no problems.<br>
          </div>
          <div><br>
          </div>
          <div>--> ingres<br>
            Ingrese la matriz A   <br>
            [4,3,-2,1;3,2,1,5;-2,3,1,2;-5,0,1,1]<br>
            <br>
               4.   3.  -2.   1.<br>
               3.   2.   1.   5.<br>
              -2.   3.   1.   2.<br>
              -5.   0.   1.   1.<br>
            Ingrese el vector independiente b   <br>
            --> [4;-8;-7;-8]<br>
            Ingrese el vector independiente b   <br>
            [4;-8;-7;-8]<br>
            <br>
            <br>
              -8.<br>
          </div>
          <div><br>
          </div>
          <div><br>
          </div>
          <div><br>
          </div>
          <div class="ydp2e1aa830signature">Héctor Lépez Cel: 154137337</div>
        </div>
      </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>
    <p><br>
    </p>
  </body>
</html>