| T O P I C R E V I E W |
| 70WorkRoom |
Posted - 07/13/2007 : 05:26:51 AM Version:Origin pro 7.5 Operaion System:windows 2000
I need the result is 0.00332
Another question. when i make a graph that be fitted linear,how can i copy it to a microsoft word with origin c?
I need your help,thanks very much.
Edited by - 70WorkRoom on 07/13/2007 05:51:39 AM |
| 2 L A T E S T R E P L I E S (Newest First) |
| 70WorkRoom |
Posted - 07/14/2007 : 09:30:29 AM thank you very much. |
| Mike Buess |
Posted - 07/14/2007 : 08:29:39 AM atof("0.003315") returns the number 0.003315. Any rounding off you see results from subsequent formatting...
double run_atof(string str) { double x = atof(str); printf("x=%.5f\n",x); return x; }
>run_atof("0.003315")=; >x=0.00331 >RUN_ATOF("0.003315")=0.003315
quote: when i make a graph that be fitted linear,how can i copy it to a microsoft word with origin c?
The file Samples\COM Client\ReportCreation.c should give you some ideas.
Mike Buess Origin WebRing Member |