Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - Français

Change language to:
English - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Manuel Scilab >> Bibliothèque graphique > handle > copy

copy

copy a graphics entity.

Calling Sequence

copy(h)
copy(h,h_axes)
h_copy=copy(h)

Arguments

h

a handle, the handle of the entity to copy.

h_axes

a handle, the handle of the parent entity for the destination. It should be an axes entity.

h_copy

a handle, the handle on the entity copied.

Description

This routine can be used to make a copy of a graphics entity with all its propeties'values, it returns the handle on this new entity. h_axes omitted, graphics entity is cloned and it's copied in the same parent axes entity.

Examples

subplot(211);a1=gca();
plot2d()
e=gce();
p1=e.children(1);
p2=copy(p1);p2.data(:,2)=p2.data(:,2)-0.5;
subplot(212);a2=gca();
a2.data_bounds=a1.data_bounds;
copy(p1,a2);

Authors

Djalel ABDEMOUCHE

<< swap_handles handle delete >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jan 26 16:24:15 CET 2011