Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Scilab > Error handling > errclear

errclear

error clearing

Syntax

errclear([n])

Description

clears the action (error-handler) connected to error of type n.

If n is positive (n > 0), it is the number of the cleared error ; otherwise if (n <= 0) all errors are cleared (default case).

Examples

a = 1;
            b = undefinedvariable + a;
            lasterror()
            b = undefinedvariable + a;
            errclear()
            lasterror()
            b = undefinedvariable + a;
            errclear(5)  // error 4 always as last error
            lasterror()
            b = undefinedvariable + a;
            errclear(4)
            lasterror()

See Also

  • lasterror — get last recorded error message
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:30 CEST 2016