Changes between Initial Version and Version 1 of Ticket #3464
- Timestamp:
- 2015-09-17T05:47:28Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3464 – Description
initial v1 1 Some models from MSL trunk initialize arrays with expressions like :1 Some models from MSL trunk initialize arrays with expressions like `TransformationMatrix`: 2 2 {{{#!mo 3 parameter Real TransformationMatrix[2, m]=2/m*{+cos(+phi),+sin(+phi)}; 3 function ToSpacePhasor 4 input Real x[:]; 5 ... 6 protected 7 parameter Integer m=size(x, 1); 8 parameter Modelica.SIunits.Angle phi[m]=MultiPhase.Functions.symmetricOrientation(m); 9 10 parameter Real TransformationMatrix[2, m]=2/m*{+cos(+phi),+sin(+phi)} for k in 1:m}; 11 ... 12 end ToSpacePhasor; 4 13 }}} 5 14