Changes between Initial Version and Version 1 of Ticket #4835, comment 3


Ignore:
Timestamp:
2018-06-01T07:56:07Z (6 years ago)
Author:
massimo ceraolo

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4835, comment 3

    initial v1  
    2222
    2323(checked with OpenModelica 1.13.0~dev-1028-g72f3421 for Linux)
     24
     25I know that a good workaround exists:
     26
     27{{{
     28model 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);
     34equation
     35    Z=Complex(R,X);
     36end ComplexTest1;
     37}}}
     38
     39but here we are discussing of getting Complex numbers to work "without compromises".
     40