* chart tagged as obsolete. Will be removed in Scilab 5.5.1.
Please use nicholschart instead.
-
+
* mvvacov tagged as obsolete. Will be removed in Scilab 6.0.0.
Please use cov instead.
+* Second output argument of add_param tagged as obsolete. Will be removed in Scilab 5.5.1.
+
* dft removed, please use fft instead.
* sscanf removed, please use msscanf instead.
Xcos Bug Fixes
-==============
+===============
* Bug #7350 fixed - The I/O ports numbering of a superblock was not updated
when a new port was dropped.
<listitem>
<para>an error flag which is set to %T if list_name is not of type plist (this list has not been initialized by a call to init_param).
</para>
+ <caution>
+ This argument is obsolete and will be removed in Scilab 5.5.1.
+ </caution>
</listitem>
</varlistentry>
</variablelist>
</refsection>
<refsection>
<title>Examples</title>
- <programlisting role="example"><![CDATA[
+ <programlisting role="example"><![CDATA[
mylist = init_param();
mylist = add_param(mylist,'minbound',[0 0 0]);
]]></programlisting>
</member>
</simplelist>
</refsection>
+ <refsection>
+ <title>History</title>
+ <revhistory>
+ <revision>
+ <revnumber>5.5.0</revnumber>
+ <revremark>Second output argument (err) tagged as obsolete.</revremark>
+ </revision>
+ </revhistory>
+ </refsection>
</refentry>
[nargout, nargin] = argn();
+ if nargout == 2 then
+ warning(sprintf(_("Second output argument of %s is obsolete.\n"), "add_param"))
+ warning(sprintf(_("This argument will be permanently removed in Scilab %s"), "5.5.1"))
+ end
+
if nargin <> 2 & nargin <> 3 then
error(sprintf(gettext("%s: Wrong number of input arguments: %d to %d expected.\n"), "add_param", 2, 3));
end