klikaa Posted January 26, 2014 Posted January 26, 2014 The part for(int i=1; i<n; i++) { x=sqrt(y*i); cout<<"x"<<i<<": "<<x<<endl; } isn't working wll, for some elements the result is non, i thought that i because the numbers are complex, but not with include complex i get the same resut.. can anyone help me #include<iostream> #include<math.h> #include <complex> using namespace std; int main() { int n,elem[20]; float y[20],A[20]; complex<float> x[20]; cout<<"Number of elements?"<<endl; cin>>n; cout<<"Insert elements:"<<endl; for(int i=0; i<n; i++) { cin>>elem[i]; } A[0]=pow(elem[0],2); for(int j=1; j<n; j++) { A[j]=pow(elem[j],2); int i=1; while((i+j)<=n-1&&(i<=j)) { A[j]=A[j]+pow((-1),i)*2*(elem[j-i]*elem[j+i]); i=i+1; } cout<<"A"<<j<<":"<<A[j]<<endl; } for(int i=1; i<n; i++) { y[i]=A[i]/-A[i-1]; cout<<"y"<<i<<": "<<y[i]<<endl; } for(int i=1; i<n; i++) { x[i]=sqrt(y[i]*i); cout<<"x"<<i<<": "<<x[i]<<endl; } }
Sensei Posted January 27, 2014 Posted January 27, 2014 (edited) sqrt() the most likely is returning NaN (Not A Number) for negative input. The same happens with regular hand calculators (E letter appears etc.) http://en.wikipedia.org/wiki/NaN It's mentioned on wiki page "There are three kinds of operations that can return NaN: [...] The square root of a negative number." Edited January 27, 2014 by Sensei
klikaa Posted January 27, 2014 Author Posted January 27, 2014 sqrt() the most likely is returning NaN (Not A Number) for negative input. The same happens with regular hand calculators (E letter appears etc.) http://en.wikipedia.org/wiki/NaN It's mentioned on wiki page "There are three kinds of operations that can return NaN: [...] The square root of a negative number." and how can i change that? that i doesn't give nan ?
Sensei Posted January 27, 2014 Posted January 27, 2014 (edited) Take sqrt() only from positive numbers.. So use fabs()/abs() or equivalent code, to get rid of negatives... BTW, y[] is defined as float, so complex class sqrt() is never executed, only regular one. Edited January 27, 2014 by Sensei 1
klikaa Posted January 27, 2014 Author Posted January 27, 2014 Take sqrt() only from positive numbers.. So use fabs()/abs() or equivalent code, to get rid of negatives... BTW, y[] is defined as float, so complex class sqrt() is never executed, only regular one. thanks for you help... i figured it out.. now its all working
Sensei Posted January 27, 2014 Posted January 27, 2014 You are in one place dividing by variable. If it'll be 0, you will end up with error as well. You have to check whether it's equal 0.0 to prevent that. If sqrt() from negative is really needed you can try using following function instead: double negative_sqrt( double value ) { if( value >= 0 ) return( sqrt( value ) ); return( -sqrt( -value ) ); } It will make sure that you're not taking square from negative, and preserving sign of value. f.e. negative_sqrt( -100 ) will return -10 But it's not general purpose equivalent. It depends on context in which you might need sqrt(). -10 * -10 = +100 after all.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now