Create array of complex numbers.
-
Any one knows how to create an array of complex numbers? Do you think I can use CArray or other collective class? Thanks. mIchAel Liu __________________________________________________________ The secret of business is to know something that nobody else knows. ;)
-
Any one knows how to create an array of complex numbers? Do you think I can use CArray or other collective class? Thanks. mIchAel Liu __________________________________________________________ The secret of business is to know something that nobody else knows. ;)
Why not ?
CArray ptArrayOfMyComplexNumber;
Max.
-
Why not ?
CArray ptArrayOfMyComplexNumber;
Max.
I'm using C++ complex template class. I got problem when I declared an array of complex numbers. e.g. I declared it like this: CArray, complex> ptArrayComplexNumber; The declaration above is not right for the VC compile. So I changed to CArray, float> ptArrayComplexNumber; This one is good for compile, but I can't do insertion complex number into it or other actions. Do you know how to do it? Best regards, mIchAel Liu __________________________________________________________ The secret of business is to know something that nobody else knows. ;)