-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
It’s kind of gross to see matrix definitions that include new Q.ComplexNumber( blah, blah )
rather than something simple like '-i'
. Something like this within the Matrix
constructor might be nice:
if( typeof n === 'string' ){
n = Q.ComplexNumber.fromString( n )
}
But that means having to write Q.ComplexNumber.fromString( n )
...
So this issue is a note-to-self to write that!