Changes between Version 1 and Version 3 of Ticket #6296
- Timestamp:
- 2020-12-20T08:58:45Z (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6296
- Property Component Cpp Run-time → FMI
- Property Owner changed from to
-
Ticket #6296 – Description
v1 v3 6 6 Real[n] x1(each start = 1); 7 7 output Real[n] yx1; 8 output Real y1; 8 9 equation 9 10 when Clock(0.1) then … … 13 14 yx1[i] = x1[i]; 14 15 end for; 16 end when; 17 y1 = sum(x1); 15 18 end ArrayEquationsTest; 16 19 }}}