Family Day update

This commit is contained in:
Ingy döt Net 2020-02-17 23:21:07 -08:00
parent aac6731f2c
commit 9ad63ea473
2442 changed files with 39761 additions and 8255 deletions

View file

@ -1,12 +1,8 @@
require 'complex' # With Ruby 1.9, this line is optional.
# Three ways to write complex numbers:
# Four ways to write complex numbers:
a = Complex(1, 1) # 1. call Kernel#Complex
i = Complex::I # 2. use Complex::I
b = 3.14159 + 1.25 * i
c = '1/2+3/4i'.to_c # 3. Use the .to_c method from String, result ((1/2)+(3/4)*i)
#Ruby 2.1 introduced a suffix to create a complex:
c = 1.0/2+3/4i # (0.5-(3/4)*i)
# Operations: