Skip to content
Snippets Groups Projects
Select Git revision
  • 5631b2f8de0df1f4ad14709f8c1aaebb2707dc87
  • master default protected
  • Binary
  • add-version-information
  • os-path-join
  • develop-GA
  • timeFstatmap
  • add-higher-spindown-components
  • develop-DK
  • adds-header-to-grid-search
  • v1.3
  • v1.2
  • v1.1.2
  • v1.1.0
  • v1.0.1
15 results

make_fake_data.py

Blame
  • Forked from Gregory Ashton / PyFstat
    Source project has a limited visibility.
    FT_example1.m 500 B
    
    % Example file for using SimTools with Finesse
    
    clear all;
    
    % create FT variable, which contains the path to 'kat'
    FT=FT_create_new_FT();
    FT=FT_check_for_kat_binary(FT);
    
    % create a new 'run' variable
    Run1=FT_create_new_kat_run();
    % set the 'run' filename to 'testblock', i.e.
    % Finesse can be called via Run1 to run the file 
    % testblock.kat
    Run1.filename='testblock';
    
    % run Finesse and read data from testblock.out
    Run1=FT_run_kat_simulation(FT,Run1);
    
    % clean directory again
    FT_kat_clean(Run1);