Changes between Initial Version and Version 1 of Ticket #4835, comment 3
- Timestamp:
- 2018-06-01T07:56:07Z (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4835, comment 3
initial v1 22 22 23 23 (checked with OpenModelica 1.13.0~dev-1028-g72f3421 for Linux) 24 25 I know that a good workaround exists: 26 27 {{{ 28 model ComplexTest1 29 parameter Integer n = 2; 30 Real R[n,n]=ones(n,n); 31 Real X[n,n]=ones(n,n); 32 Complex Z[n,n]; 33 constant Complex j = Complex(0.0, 1.0); 34 equation 35 Z=Complex(R,X); 36 end ComplexTest1; 37 }}} 38 39 but here we are discussing of getting Complex numbers to work "without compromises". 40