Skip to content
Snippets Groups Projects
Select Git revision
  • 7e07d3e0fc5ca7b92997fffa912d530379cf5b51
  • master default
  • pf_block_problem
  • r2025a
  • asm
  • kronecker
  • 4.5.6
  • 4.5.5
  • 4.5.4
  • 4.5.3
  • 4.5.2
  • 4.5.1
  • 4.5.0
  • 4.4.3
  • 4.4.2
  • 4.4.1
  • 4.4.0
  • 4.4-beta1
  • 4.3.3
  • 4.3.2
  • 4.3.1
  • 4.3.0
  • 4.2.5
  • 4.2.4
  • 4.2.3
  • 4.2.2
26 results

ramst_initval_file_data.m

Blame
  • Forked from Dynare / dynare
    Source project has a limited visibility.
    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');