Extends from Modelica.Icons.FunctionsPackage (Icon for packages containing functions).
Name | Description |
---|---|
toReal | Extract Real part from Complex number |
'-' | Subtract two complex numbers |
'*' | Multiplication |
'+' | Add two complex numbers |
'/' | Divide two complex numbers |
'^' | Complex power of complex number |
'log' | Logarithm of complex number |
Extract Real part from Complex number
This function returns the real part of a complex number.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c | Complex number |
Name | Description |
---|---|
result | Real number |
Subtract two complex numbers
This function returns the difference of two given Complex numbers.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c1 | Complex number 1 |
c2 | Complex number 2 |
Name | Description |
---|---|
c3 | = c1 - c2 |
Multiplication
This function returns the product of two given Complex numbers.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c1 | Complex number 1 |
c2 | Complex number 2 |
Name | Description |
---|---|
c3 | = c1*c2 |
Add two complex numbers
This function returns the sum of two given Complex numbers.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c1 | Complex number 1 |
c2 | Complex number 2 |
Name | Description |
---|---|
c3 | = c1 + c2 |
Divide two complex numbers
This function returns the quotient of two given Complex numbers.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c1 | Complex number 1 |
c2 | Complex number 2 |
Name | Description |
---|---|
c3 | = c1/c2 |
Complex power of complex number
This function returns the given Complex numbers c1 to the power of the Complex number c2.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c1 | Complex number |
c2 | Complex exponent |
Name | Description |
---|---|
c3 | = c1^c2 |
Logarithm of complex number
This function returns the Complex natural logarithm of the Complex input.
Extends from Modelica.Icons.Function (Icon for functions).
Name | Description |
---|---|
c1 | Complex number |
Name | Description |
---|---|
c2 | = log(c1) |