Skip to content
Snippets Groups Projects
Select Git revision
  • 38ef4c234b76daae90082edfcfd1129b7ed6129f
  • master default protected
  • 6.x protected
  • madysson
  • 5.x protected
  • asm
  • time-varying-information-set
  • 4.6 protected
  • dynare_minreal
  • dragonfly
  • various_fixes
  • 4.5 protected
  • clang+openmp
  • exo_steady_state
  • declare_vars_in_model_block
  • julia
  • error_msg_undeclared_model_vars
  • static_aux_vars
  • slice
  • aux_func
  • penalty
  • 6.4 protected
  • 6.3 protected
  • 6.2 protected
  • 6.1 protected
  • 6.0 protected
  • 6-beta2 protected
  • 6-beta1 protected
  • 5.5 protected
  • 5.4 protected
  • 5.3 protected
  • 5.2 protected
  • 5.1 protected
  • 5.0 protected
  • 5.0-rc1 protected
  • 4.7-beta3 protected
  • 4.7-beta2 protected
  • 4.7-beta1 protected
  • 4.6.4 protected
  • 4.6.3 protected
  • 4.6.2 protected
41 results

ParsingDriver.hh

Blame
  • ramst_initval_file_data.m 369 B
    x = vertcat([ 1; 1.2 ], repmat(1, 200, 1));
    k = repmat(13, 202, 1);
    c = repmat(1.5, 202, 1);
    save('ramst_initval_file_data_col_vec_mat.mat','c','k','x');
    
    if ispc()
        xlswrite('ramst_initval_file_excel',[x k c],1,'A2');
        xlswrite('ramst_initval_file_excel',{'x' 'k' 'c'},1,'A1');
    end
    
    c=c';
    k=k';
    x=x';
    save('ramst_initval_file_data_row_vec_mat.mat','c','k','x');