excuse me for this thread
=> i have a 0 for the first value it's the problem
see you 
Added after 1 25 minutes:
finally i haven't already a problem:
i use this to plot my curve:
for (int z=1;z<timeNb6;z++)
{
if (Points2_OneXtwoY[z][0]<0.002)
{
}
else
{
x6 << Points2_OneXtwoY[z][0] ;
y6 << Points2_OneXtwoY[z][1] ;
x7 << Points2_OneXtwoY[z][0] ;
y7 << Points2_OneXtwoY[z][2] ;
}
}
AtomicCurve1.setSamples(x6.data(),y6.data(),x6.size());
AtomicCurve2.setSamples(x7.data(),y7.data(),x7.size());
for (int z=1;z<timeNb6;z++)
{
if (Points2_OneXtwoY[z][0]<0.002)
{
}
else
{
x6 << Points2_OneXtwoY[z][0] ;
y6 << Points2_OneXtwoY[z][1] ;
x7 << Points2_OneXtwoY[z][0] ;
y7 << Points2_OneXtwoY[z][2] ;
}
}
AtomicCurve1.setSamples(x6.data(),y6.data(),x6.size());
AtomicCurve2.setSamples(x7.data(),y7.data(),x7.size());
To copy to clipboard, switch view to plain text mode
So in my plot i can't have a point for x6 or x7 with a value less than 0.002, but in my plot i have a value less than 0.002 
Please see my curve result
http://imageshack.us/photo/my-images/804/myplot.jpg/
Bookmarks