<html>
<head>
<base href="https://bugzilla.scilab.org/" />
</head>
<body><span class="vcard"><a class="email" href="mailto:clement.david@scilab-enterprises.com" title="Clement DAVID <clement.david@scilab-enterprises.com>"> <span class="fn">Clement DAVID</span></a>
</span> changed
<a class="bz_bug_link
bz_status_RESOLVED bz_closed"
title="RESOLVED FIXED - calling function hosted in mlist results in arguments mismatch"
href="https://bugzilla.scilab.org/show_bug.cgi?id=14497">bug 14497</a>
<br><br>
---------- Bug Summary ----------- <br>calling function hosted in mlist results in arguments mismatch <br><br>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">Status</td>
<td>NEW
</td>
<td>RESOLVED
</td>
</tr>
<tr>
<td style="text-align:right;">CC</td>
<td>
</td>
<td>clement.david@scilab-enterprises.com
</td>
</tr>
<tr>
<td style="text-align:right;">Resolution</td>
<td>---
</td>
<td>FIXED
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_RESOLVED bz_closed"
title="RESOLVED FIXED - calling function hosted in mlist results in arguments mismatch"
href="https://bugzilla.scilab.org/show_bug.cgi?id=14497#c1">Comment # 1</a>
on <a class="bz_bug_link
bz_status_RESOLVED bz_closed"
title="RESOLVED FIXED - calling function hosted in mlist results in arguments mismatch"
href="https://bugzilla.scilab.org/show_bug.cgi?id=14497">bug 14497</a>
from <span class="vcard"><a class="email" href="mailto:clement.david@scilab-enterprises.com" title="Clement DAVID <clement.david@scilab-enterprises.com>"> <span class="fn">Clement DAVID</span></a>
</span></b>
<pre>Every call seems OK to me with Scilab 6.0.1.
--> maMethode(1,2) //ok
1.
2.
--> maMethode(1) //ok
1.
arg2 non defini
--> maMethode(arg2=2,arg1=1) //ok
1.
2.
--> maMethode(,2) //ok
2.
--> maListe.methode(1,2) //ok
1.
2.
--> maListe.methode(1) //ok
1.
arg2 non defini
--> maListe.methode(,2) //ok
2.
--> maListe.methode(arg1=1,arg2=2) // FAILED on 5.5.2 : arg1 said undefined, arg2 used with arg1 value
1.
2.
--> maListe.methode(arg1=1,2) // ok !
1.
2.
--> maListe.methode(1,arg2=2) // FAILED on 5.5.2 : arg1 said undefined, arg2 used with arg1 value
1.
2.
--> maListe.methode(arg2=2) // FAILED on 5.5.2 : arg1 used with arg2 value, arg2 said undefined
arg1 non defini
2.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are watching all bug changes.</li>
</ul>
</body>
</html>