<< closeEditvar UI Data filebrowser >>

Справка Scilab >> UI Data > editvar

editvar

Scilab variable editor

Syntax

editvar varname

Arguments

varname

variable name. The variable must exist in the current Scilab environment.

Description

editvar is the Scilab variable editor.

editvar can be started by calling it on the name of the variable or by double-clicking on the name of the variable from the browsevar component.

editvar has numerous features:

editvar can edit the following variable types:

Examples

a=rand(10,10);
editvar a;
b=['hello';'good bye'];
editvar b;
sp=sparse([1,2;4,5;3,10],[1,2,3])
editvar("sp");

See also


Report an issue
<< closeEditvar UI Data filebrowser >>