Scilab 5.5.0
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
See the recommended documentation of this function
who_user
listing of user's variables
Calling Sequence
varList = who_user([bPrint])
Arguments
- bPrint
- enable or disable screen outputs (default: - %t).
Return value
- varList
- a column vector of user's variables or - []if user does not have variable.
Description
who_user displays and/or returns user's variable names.
Examples
clear; who_user() who_user(%t) who_user(%f) a = 1; b = 2; who_user() who_user(%t) who_user(%f) clear;
History
| Version | Description | 
| 5.4.0 | who_usercan now return user's 
                    variable names in a column vector of character strings. | 
| Report an issue | ||
| << getvariablesonstack | Variables | exit >> |