Clone figure in Matlab - with properties and data

后端 未结 3 2110
粉色の甜心
粉色の甜心 2021-02-20 08:53

I write a script in matlab, which produces figures out a set of data.

The figures are supposed to rather similar with respect to formating, and each of them is ought to

3条回答
  •  无人及你
    2021-02-20 09:55

    MATLAB's built-in function copyobj should also work. Here's an example:

    peaks;
    f2=copyobj(gcf,0);
    

提交回复
热议问题