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 do Brasil - Japanese -
Scilab help >> Scilab > errclear

errclear

error clearing

Calling Sequence

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

Comments


Add a comment:
Please login to comment this page.

<< errcatch Scilab error >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:09:25 CEST 2011