Overview
Comment:Take t (time) from mtt_data - works with non-zero simpar.first
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 63cb6a27c6a6ec017e555878cc8631867a0d5b33d2fc4f7df05753ecfd0c5a6f
User & Date: gawthrop@users.sourceforge.net on 2002-05-20 07:41:03
Other Links: branch diff | manifest | tags
Context
2002-05-20
08:10:11
Now changes 10-1 to 9, not 09. etc. check-in: 9184eb0ecf user: gawthrop@users.sourceforge.net tags: origin/master, trunk
07:41:03
Take t (time) from mtt_data - works with non-zero simpar.first check-in: 63cb6a27c6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
07:12:05
Trying to get oct files generated with -oct check-in: 039197b659 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/bin/trans/make_sim from [7a48ad2de1] to [266de8bd1f].

27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  y = mtt_data(:,2:1+ny);
  x = mtt_data(:,3+ny:2+ny+nx);
  ypar = [];

  if nargout>2
    ## Create time vector
    [N,M] = size(y);
    t = simpar.dt*[0:N-1]';
  endif;

endfunction
EOF

}








|







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  y = mtt_data(:,2:1+ny);
  x = mtt_data(:,3+ny:2+ny+nx);
  ypar = [];

  if nargout>2
    ## Create time vector
    [N,M] = size(y);
    t = mtt_data(:,1);
  endif;

endfunction
EOF

}

Modified mttroot/mtt/bin/trans/make_ssim from [68e9b7c313] to [c5f9aeda27].

47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
      x = mtt_data(:,3+ny2:2+ny2+nx2);
    endfor
  endif

  if nargout>3
    ## Create time vector
    [N,M] = size(y);
    t = simpar.dt*[0:N-1]';
  endif;

endfunction
EOF

}








|







47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
      x = mtt_data(:,3+ny2:2+ny2+nx2);
    endfor
  endif

  if nargout>3
    ## Create time vector
    [N,M] = size(y);
        t = mtt_data(:,1);
  endif;

endfunction
EOF

}


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]