Save/open StaMPS products

Hey guys i have a Q related to how to save or open the files after StaMPS processing, i complete with succes but i dont now how to open again the files when i need (or only ejecute matlab with tcsh file into Insar_master folder). Aditionaly, i run the export comand but now when i try to change the radius with

ps_plot(‘v-do’, ‘ts’), matlab says disp(‘Please select a point on the figure to plot time series (TS)’). Maybe this is appears because i already run the export command:

load(‘ps_plot_v-do.mat’)
disp = ph_disp(ind);
disp_ts = ph_mm(ind,:);
export_res = [lon2 lat2 disp disp_ts];

metarow = [ref_centre_lonlat NaN transpose(day)-1];
k = 0;
export_res = [export_res(1:k,:); metarow; export_res(k+1:end,:)];
export_res = table(export_res);
writetable(export_res,‘stamps_tsexport.csv’)

Regards!