source: MML/trunk/machine/SOLEIL/Booster/applications/save_param_nu.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 374 bytes
Line 
1function save_param_nu(comment)
2
3% save parameter
4file=appendtimestamp('boo');
5
6% commentaire
7    boo=load_param;
8    boo.date   =datestr(clock);
9    boo.comment=comment;
10   
11% mesure nombre d'onde
12    boo.time=[0  10 ];
13    boo.nux =[6.6 6.65];
14    boo.nuz =[4.6 4.65];
15   
16% sauvegarde
17   save(file, 'boo');
18   
19%%%   
20boo
21fprintf('Fichier enregisté : %s \n' , file)
22
23
Note: See TracBrowser for help on using the repository browser.