Changes between Initial Version and Version 3 of Ticket #5151


Ignore:
Timestamp:
2018-10-04T14:20:09Z (7 years ago)
Author:
Rüdiger Franke
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5151

    • Property Cc Adrian Pop added
  • Ticket #5151 – Description

    initial v3  
    22{{{#!mo
    33  model NewNFBug
    4     constant Integer n = 10;
    5     input Real[n] u;
    6     Real[size(u, 1)] x(each start = 1);
    7     Real[size(u, 1)] ud = sample(u, Clock(0.1));
     4    input Real u;
     5    Real x(start = 1);
     6    Real ud = sample(u, Clock(0.1));
    87  equation
    98    der(x) = ud;