How to copy a figure in anothe figure?

132 visualizaciones (últimos 30 días)
vatankhah
vatankhah el 31 de Jul. de 2013
Editada: madhan ravi el 18 de En. de 2019
Hello, I want to produce the same figures. For example I have figure(1),figure(2). figure(1) with some points that are plotted in it and figure(2) is an empty screen. I want to copy figure(1) in figure(2).How can I do this with commands in matlab? please help me thanks a lot

Respuesta aceptada

David Staack
David Staack el 18 de En. de 2019
Editada: madhan ravi el 18 de En. de 2019
plot(peaks)
a1 = gca
f2 = figure
a2 = copyobj(a1,f2)

Más respuestas (1)

Jan
Jan el 31 de Jul. de 2013
Editada: Jan el 31 de Jul. de 2013
This seems to be a task for copyobj
  2 comentarios
vatankhah
vatankhah el 1 de Ag. de 2013
How can I use copyobj command to copy figure(1) for example. could you please explain it more by an example for figure(1)? thanks
Jan
Jan el 1 de Ag. de 2013
Editada: Jan el 1 de Ag. de 2013
I think it is your turn to explain more details of what you want and what you have tried so far. It is not efficient, if I guess what "some points plotted in the figure" exactly means, because I will most likely not match your needs.
As the help text explains, copyobj duplicates objects to a new parent. So it does not copy the figure, but the objects the figure contains. The example contained in these docs should be descriptive enough already.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by