|
|
沙发

楼主 |
发表于 2010-4-13 21:27:04
|
只看该作者
Re: 指数型数据的比较
If all the numbers follow by the same patterns, you may hardcode the numbers, like
[code:51d4cdw2]DATA x;
INPUT b $ :12.;
b1 = TRANSTRN(b, '*10^', 'E'); b2 = INPUT(b1, BEST.);
DATALINES;
3.89*10^12
5.32*10^14
;[/code:51d4cdw2] |
|