Scilab-Branch-6.1-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
xsave
salva gráficos em um arquivo
Seqüência de Chamamento
xsave(filename) xsave(filename, win_num) xsave(filename, win_handle)
Parâmetros
- file_name
string, nome do arquivo
- win_num
inteiro, o número da janela de gráficos. Se não for forneceido, a janela de gráficos corrente é utilizada.
- win_handle
- handle of the figure to save. By default, gcf() is used.
Descrição
xsave
salva os gráficos contidos na janela de
gráficos win_num
no arquivo binário
file_name
e pode ser carregado com
xload
.
xsave(file_name, win_num) and
xsave(file_name, win_handle) are just shortcuts respectively for
h=findobj("figure_id", win_num); save(file_name, "h") and
save(file_name, "win_handle") , that can be used directly. |
Exemplos
Ver Também
Report an issue | ||
<< xload | load_save | polygon >> |