Feature #1316
closedPhasor.rb: Complex number class using polar coordinates
Description
=begin
Hello!
I am writing a sound synthesis program, and I needed a way to easily generate and manipulate complex sound samples (analytic signal), so I wrote a new class by adapting the Ruby Complex Number class by Keiju ISHITSUKA to make calculations using polar coordinates.
I know the complex number class in 1.9 is written in C, but I hope this would inspire someone to make a C version using polar coordinates too... Anyway, do what you wish with this. As I mainly needed to multiply and add phasors with scalars, some methods may have bugs or inaccuracies with complex arguments. There are still some weirdness in substraction (2 tests fail), and most of the trigonometry functions are absent.
I tried to use svn diff to make a patch file out of the class, but that didn't work as expected - diff didn't see my file at all, but instead tried to diff against several other files, so I will just attach the file and unit tests here.
Sincerely,
Peter H.
=end
Files
Updated by marcandre (Marc-Andre Lafortune) about 15 years ago
- Assignee set to matz (Yukihiro Matsumoto)
- Priority changed from Normal to 3
=begin
=end
Updated by shyouhei (Shyouhei Urabe) about 14 years ago
- Status changed from Open to Assigned
=begin
=end
Updated by ko1 (Koichi Sasada) over 13 years ago
- Assignee changed from matz (Yukihiro Matsumoto) to mrkn (Kenta Murata)
mrkn, what do you think about it?
Updated by mame (Yusuke Endoh) almost 13 years ago
Hello mrkn,
Bumping this. Please let us know your opinion.
IMHO, it is not Ruby way to define another class that has the same set
of methods and different representation. That's like defining a "List"
class for "Array."
But part of me also is purely interested in the feature.
--
Yusuke Endoh mame@tsg.ne.jp
Updated by mrkn (Kenta Murata) almost 13 years ago
- Status changed from Assigned to Rejected
I think these features are provided as a gem.