Differences
This shows you the differences between two versions of the page.
| documentation:language_reference:objects:complex:functions:re [2016/09/19 13:39] – created Maurits W. Haverkort | documentation:language_reference:objects:complex:functions:re [2025/11/20 04:20] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Re ====== | ||
| + | ### | ||
| + | Complex.Re($z$) returns a real number equal to the real part of $z$ | ||
| + | ### | ||
| + | |||
| + | ===== Example ===== | ||
| + | |||
| + | ### | ||
| + | The following example defines $z$ as a complex number and sets $x$ equal to its real part. | ||
| + | ### | ||
| + | |||
| + | ==== Input ==== | ||
| + | <code Quanty Example.Quanty> | ||
| + | -- Complex.Re(z) | ||
| + | z = 3 + 2 * I | ||
| + | x = Complex.Re(z) | ||
| + | |||
| + | print(" | ||
| + | print(" | ||
| + | </ | ||
| + | |||
| + | ==== Result ==== | ||
| + | <file Quanty_Output> | ||
| + | z = (3 + 2 I) | ||
| + | x = Re[z] = 3 | ||
| + | </ | ||
| + | |||
| + | ===== List of all functions in complex ===== | ||
| + | {{indexmenu> | ||