Tagged Questions
The complex tag has no wiki summary.
10
votes
1answer
787 views
C complex number and printf
How to print ( with printf ) complex number? For example, if I have this code:
#include <stdio.h>
#include <complex.h>
int main(void)
{
double complex dc1 = 3 + 2*I;
double ...
8
votes
4answers
21k views
Complex ListView example with complex data and complex layout of each row?
Im pulling a list of product objects from a database call and I want to build a ListView of the data in my activity with a non-scrolling header and footer. Each row will consist of a product ...
7
votes
5answers
244 views
C99: can imaginary part of complex be a negative zero
Is it possible to store negative zero in imaginary part of C99 complex float?
How I should statically initialize complex constants with signed imaginary part?
I have a small example, but I can't ...
7
votes
2answers
2k views
Numpy: Creating a complex array from 2 real ones?
I swear this should be so easy... Why is it not? :(
In fact, I want to combine 2 parts of the same array to make a complex array:
Data[:,:,:,0] , Data[:,:,:,1]
These don't work:
x = ...
6
votes
2answers
1k views
C99 complex support with visual studio
I would like to use complex numbers as defined in C99, but I need to support compilers which do not support it (MS compilers come to mind).
I don't need many functions, and implementing the needed ...
5
votes
4answers
235 views
python augmented assignment question
i ran into something interesting about the python augmented assignment +=
it seems to be automatic data type conversion is not always done for a += b if a is a 'simpler' data type, while a = a + b ...
4
votes
1answer
246 views
How to expose a complex type in a Delphi WebService
I've got a problem with exposing a DTO class through SOAP WebService.
My class looks like
TKontrahent = class
public
Imie : string;
Nazwisko : string;
Id : integer;
end;
Here's the ...
4
votes
2answers
91 views
The geometric interpretation of a function of a complex variable with Mathematica?
How can I write the code in mathematica to see the result like this:
As you see we have the complex function $w=f(z)$, where $z=x+iy$ and $w=u+iv$.
In this example $w=sin z$, and we see the image ...
4
votes
1answer
94 views
Does it make sense to define a class for Complex numbers, where real/imaginary parts use Numeric[T] instead of a concrete type?
Would something like
class Complex[T: Numeric](real: T, imag: T)
make sense, instead of writing a Complex class using Doubles, one using Longs, one using BigInts, so that everyone can choose the ...
4
votes
3answers
177 views
XSLT sum by lookup value from another file
I want to get the total of a specific student from following 2 XML files:
--- File: mark.xml ----
<marks>
<mark type="HD">10</mark>
<mark type="D">8</mark>
...
4
votes
1answer
406 views
Use scipy.integrate.quad to integrate complex numbers
I'm using right now the scipy.integrate.quad to successfully integrate some real integrands. Now a situation appeared that I need to integrate a complex integrand. quad seems not be able to do it, as ...
4
votes
2answers
1k views
Model binding to a list with Non-Sequential Indices possible in MVC 3?
I'm following the info on http://haacked.com/archive/2008/10/23/model-binding-to-a-list.aspx from Phil Haack
He talks about Non-Sequential indices:
<form method="post" action="/Home/Create">
...
4
votes
4answers
338 views
C#: Convert System.String generically to any complex type using “Convert.ChangeType()”
I try to generically convert user input into either simple or complex types:
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Welcome, please provide the following info... ...
4
votes
4answers
277 views
Change the complex number output format
There is the complex<> template in C++ standard library, and it has an overloaded << operator so that it outputs complex numbers in the (real_part, im_part) format. I need to change the ...
4
votes
1answer
166 views
Git: How do I merge complex branches that have widely diverged with some missing history?
I have two "branches", both of which started from the same code base, but both of which were imported to git after they diverged. The prior history is lost, and additionally both branches have ...
4
votes
2answers
726 views
Problem casting STL complex<double> to fftw_complex
The FFTW manual says that its fftw_complex type is bit compatible to std::complex<double> class in STL. But that doesn't work for me:
#include <complex>
#include <fftw3.h>
int ...
4
votes
5answers
157 views
Geometrical progression with any number row
I can have any number row which consists from 2 to 10 numbers. And from this row, I have to get geometrical progression.
For example:
Given number row: 125 5 625 I have to get answer 5. Row: 128 8 ...
4
votes
2answers
507 views
Determinant of a complex matrix in R
Is there a way to calculate the determinant of a complex matrix?
F4<-matrix(c(1,1,1,1,1,1i,-1,-1i,1,-1,1,-1,1,-1i,-1,1i),nrow=4)
det(F4)
Error in determinant.matrix(x, logarithm = TRUE, ...) :
...
4
votes
1answer
153 views
is there a design pattern for complex aspnet UI validation?
As an example, say I have a single domain object with 100 properties. In my UI I need complex validation of the style:
If A = 1, show controls B, C, D. B is required, C is not, and D is not ...
4
votes
2answers
775 views
Why is complex<double> * int not defined in C++?
The C++ program
#include <complex>
#include <iostream>
int main()
{
std::complex<double> z(0,2);
int n = 3;
std::cout << z * n << std::endl;
}
yields an error: ...
4
votes
2answers
2k views
Complex DataMapper query association
im a beginner with DataMapper ORM, so i have question about complex querying.
First, here is simplified data objects:
class User
property :id, Serial
property :login, String
has n, ...
3
votes
2answers
134 views
Recursive FFT java algorithm returning null?
I'm currently trying to implement the FFT algorithm in java and am having a bit of trouble with it! I've tested all other parts of the algorithm well and they seem to be working fine.
The trouble ...
3
votes
2answers
239 views
Performing matrix operations with complex numbers in C
I'm trying to perform computations involving matrix operations and complex math - sometimes together, in C. I'm very familiar with Matlab and I know these types of computations could be performed ...
3
votes
4answers
242 views
How to generate very complex tree structure in HTML
In our game, we have a typical tech tree, which is currently edited by hand - very hard to maintain and error-prone: ...
3
votes
3answers
107 views
PHP for a more complex website [closed]
How do you use PHP when your website gets more complicated?
How do you keep track of levels, i.e. when you put different PHP files into folders and move them around? I find it very confusing to ...
3
votes
1answer
378 views
Using arrays with the Calendar class in CodeIgniter
I'm trying to create a rather complex array for my calendar application. It's supposed to contain dates, with the name of the day, the 'type' and the events, if any. I got as far as creating this:
...
3
votes
3answers
433 views
Understanding Discrete Fourier Tranform
I have a small query regarding the discrete Fourier transforms. If I understand correctly, then what we do is convert a polynomial to its point value representation, with n points for a polynomial ...
2
votes
1answer
57 views
complex join/union query
Tables:
items -> id, userId, tagId, postedOn
itemsTags -> id, name
users -> id, firstName, lastName
usersFriends -> id, userId, friendUserId
The system needs a re-build, at the ...
2
votes
2answers
117 views
Complex Linq query
I have and containing object named: Flight
it contains:
List<Segement> Segements
List<Passenger> Pax
List<Award> Awards
as each award contains:
List<Segment> ...
2
votes
1answer
62 views
Is it possible to export some equations from a “WYSIWYG” math editor to PHP code
Writing complex equations in PHP is big deal so it would be easier if I could write them as "WYSIWYG" i.e. with MS Mathematics and export them instead of coding them. I checked out if I could use ...
2
votes
3answers
80 views
How to print out complex hash without repeating the second level keys?
Hi I have a hash of hash containing class name, number of students enrolled and the names of student. How do I print out this hash without repeating the second level keys.
Example: My data that I fill ...
2
votes
3answers
347 views
What is a good open source C/C++ math library that supports vector math and complex numbers?
I am working on a project that needs vector math and complex numbers.
I am looking a for a good open source API that supports C/C++ and hopefully has decent performance.
I can write these functions ...
2
votes
2answers
277 views
Using std::transform and tr1::bind to transform a vector of std::complex
Given a std::vector of std::complex, I would like to transform it to a vector containing only the real part of the complex, divided by some constant coefficient.
Right now, I do that:
...
2
votes
1answer
627 views
EXT Js Complex JSON Response Handling : Grid Insertion - Problem
Hello I am trying to insert a JSON record into the grid dynamically.
My server response is as below :
{
"studentDetails":{
"status":"ACTIVE",
"subject":"MATH",
...
2
votes
1answer
682 views
Hibernate Criteria restrict by aggregation
Background
We carry out tests on multiple items on a regular basis, which produce test results (either pass or fail). A single test can be applied to multiple items, and a single item can have ...
2
votes
2answers
351 views
Passing inherited object to a wcf service using json
I have two classes that I have listed below
public Class Vehicle
{
int wheels { get ; set}
}
public Class Car:Vehicle
{
int topspeed { get; set ;}
}
//This is the container class
public ...
2
votes
1answer
604 views
ksoap2 error sending complex object
Need help! I'm trying to figure this problem
03-01 20:56:17.342: WARN/System.err(610): java.lang.NullPointerException
03-01 20:56:17.463: WARN/System.err(610): at ...
2
votes
1answer
269 views
PHP SOAP Attributes .net Web Service
Hey all. I have spent a good week looking for an answer that I can understand. I'm fairly new to the web developing world.
My problem lies with generating a soap message that requires values in ...
2
votes
1answer
333 views
Serializing an ISerializable object, that contains other ISerializable-objects
I'm currently working on saving larger object structures which contain all the data needed for a 'project' in the application I'm working on. The data are things such as pictures, flowdocuments as ...
2
votes
2answers
1k views
RegEx in VBA: Break a complex string into multiple tokens?
EDIT: Two additional token types added.
Hi,
I am trying to parse a line in a mmCIF Protein file into separate tokens using Excel 2000/2003. Worst case it COULD look something like this:
token1 ...
2
votes
1answer
214 views
Need help using json-framework on iPhone
So I've got json-framework up and running on my project, but need help figuring out how to use it to parse this json string:
[ { "id":"0", "name":"name", "info":"This is info", "tags":[ {
...
2
votes
1answer
1k views
ASP.net MVC - Update Model on complex models
I'm struggling myself trying to get the contents of a form which is a complex model and then update the model with that complex model.
My account model has many individuals
...
2
votes
1answer
142 views
complex sql which runs extremely slow when the query has order by clause
I have following complex query which I need to use. When I run it, it takes 30 to 40 seconds. But if I remove the order by clause, it takes 0.0317 sec to return the result, which is really fast ...
2
votes
1answer
321 views
Is it possible to call Complex soap API from QTP web-service addin?
Is it possible invoke the SOAP API which returns object of some class or which takes the object of class as input parameter via QTP web-service addin?
Is there any way to call overloaded API via QTP ...
2
votes
2answers
730 views
Architecting a Complex iPhone Application?
I am comming from an enterprise java development organization where we did development in nicely seperated re-usable layers. Persistency layers, Service layers, etc etc.
Now, I am looking for iPhone ...
2
votes
2answers
101 views
Making one copy of complex type from 2 webservices
Net OOP languages as well), I have 2 webservices. Svc1 returns a complex datatype which becomes the parameter for svc2. Note that it is the same complex type.
Now, I create the 2 proxy classes of ...
2
votes
5answers
169 views
How would you use AGILE here?
I am a big proponent of agile, but a friend of mine (who doesn't know agile yet - hes a managerial type ^^) asked me how I would go about planning and developing a complex distributed project, with a ...
2
votes
2answers
148 views
Testing complex datatypes?
What's are some ways of testing complex data types such as video, images, music, etc. I'm using TDD and wonder are there alternatives to "gold file" testing for rendering algorithms. I understand that ...
2
votes
2answers
2k views
Rails named routes using complex parameter names
I need to create a pretty route for an action that is expecting ugly nested parameter names (this is set and not something I can change at this time).
So instead of
...
2
votes
3answers
628 views
complex sql tree rows
table structure
id | message | reply_id
1 | help me! | 0
434 | love to | 1
852 | didn't work | 434
0110 | try this | 852
2200 | this wont | ...