Sponsored Content
Full Discussion: sum in exponential form
Top Forums Shell Programming and Scripting sum in exponential form Post 302593299 by ahamed101 on Thursday 26th of January 2012 12:29:07 PM
Old 01-26-2012
Try this...
Code:
printf("%10f", x)

Without real data, it is difficult for us to guess...

--ahamed
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Changing Unix form to Microsoft Word form to be able to email it to someone.

Please someone I need information on how to change a Unix form/document into a microsoft word document in order to be emailed to another company. Please help ASAP. Thankyou :confused: (8 Replies)
Discussion started by: Cheraunm
8 Replies

2. Shell Programming and Scripting

Convert exponential value to decimal

Hi, Here is my script to read a file into array: awk -F '+' ' # load first file into array indexed by fields 1 and 2 NR == FNR { file1nr = FNR for (i=3; i<NF; i++) { file1 = $i } I have this... (5 Replies)
Discussion started by: Sangtha
5 Replies

3. Shell Programming and Scripting

exponential format

awk -F"\t" -vv1=$name 'BEGIN{OFS="\t"} {gsub ("http://www."v1".com","",$6);print $1"\t-\t-","",$6,$7,$9,$2,$14,$15"\t""Apache=-\t-",$8*1000000"\t-\t-\t-\tdeflate=-\trmt=-"}' file.txt > a.txt file.txt 144.130.7.153 www.chi.com - 18/Jul/2010:00:00:00 +0000 GET... (3 Replies)
Discussion started by: sandy1028
3 Replies

4. Shell Programming and Scripting

Exponential issues

I have the below awk command to search a row and find the line number. It returns the value in exponential. I understand we can use the print "%.0f\n" to convert the exponential. I wanted to have this in my awk command. Can anyone advise bnd=`awk '/^GS/{p=NR}$0~"^ABC.*\\*"k{f=1}/^GE/&&f{print... (3 Replies)
Discussion started by: Muthuraj K
3 Replies

5. Shell Programming and Scripting

Convertion from Exponential to Decimal

I am trying to read values from excel and perform some calculations but I am getting below error: expr 2.326227180240883E7 / 8.509366417956961E8 expr: non-numeric argument Can anyone let me know how do i convert thse exponential numbers to decimal. (2 Replies)
Discussion started by: sachinnayyar
2 Replies

6. Shell Programming and Scripting

Transpose Data form Different form

HI Guys, I have data in File A.txt RL03 RL03_A_1 RL03_B_1 RL03_C_1 RL03 -119.8 -119.5 -119.5 RL07 RL07_A_1 RL07_B_1 RL07_C_1 RL07 -119.3 -119.5 -119.5 RL15 RL15_A_1 RL15_C_1 RL15 -120.5 -119.4 RL16... (2 Replies)
Discussion started by: asavaliya
2 Replies

7. Shell Programming and Scripting

AWK - Avoid exponential value

I'm using the following command, but how can I avoid printing exponential value (highlighted):- awk ' BEGIN { OFS=FS="|" } { if(NF>4) $10=int(((3.77*$11)/100 + $11)); } { print } ' infile CR|20121022|105|GSM|N|SAN|00122|SAN|75082|6.03929e+06|5819880|5794769|25111... (7 Replies)
Discussion started by: Yoda
7 Replies

8. Shell Programming and Scripting

Remove x lines form top and y lines form bottom using AWK?

How to remove x lines form top and y lines form bottom. This works, but like awk only cat file | head -n-y | awk 'NR>(x-1)' so remove last 3 lines and 5 firstcat file | head -n-3 | awk 'NR>4' (5 Replies)
Discussion started by: Jotne
5 Replies

9. Shell Programming and Scripting

Awk-Exponential Values

Hi Friends, My input Gene1 4.14887050399078e-49 Gene2 5.39999891278828e-10 Gene 2.22108326729483e-11 How do I change the above exponential values to normal values? Thanks (3 Replies)
Discussion started by: jacobs.smith
3 Replies
Xfontcache(3)						     Library Functions Manual						     Xfontcache(3)

NAME
Xfontcache - X-TrueType font cache extension client library SYNOPSIS
#include <X11/extensions/FontCache.h> typedef struct { long himark; long lowmark; long balance; } FontCacheSettings, *FontCacheSettingsPtr; struct cacheinfo { long hits; long misshits; long purged; long usage; }; typedef struct { long purge_runs; long purge_stat; long balance; struct cacheinfof; struct cacheinfov; } FontCacheStatistics, *FontCacheStatisticsPtr; Bool FontCacheQueryExtension(Display *dpy, int *event_basep, int *error_basep); Status FontCacheQueryVersion(Display *dpy, int *major_versionp, int *minor_versionp); Status FontCacheGetCacheSettings(Display *dpy, FontCacheSettings *cache info); Status FontCacheChangeCacheSettings(Display *dpy, FontCacheSettings *cache info); Status FontCacheGetCacheStatistics(Display *dpy, FontCacheStatistics *cache statistics info); DESCRIPTION
FontCache is an extension that is used by X-TrueType to cache informations about fonts. FontCacheQueryExtension returns True if the FontCache extension is available on the given display. A client must call FontCacheQueryExten- sion before calling any other Xfontcache function in order to negotiate a compatible protocol version; otherwise the client will get unde- fined behavior (Xfontcache may or may not work). FontCacheQueryVersion returns True if the request succeeded; the values of the major and minor protocol versions supported by the server are returned in major_versionp and minor_versionp . FontCacheGetCacheSettings should be documented here. Returns True on success or False on failure. FontCacheChangeCacheSettings should be documented here. Returns True on success or False on failure. FontCacheGetCacheStatistics should be documented here. Returns True on success or False on failure. ERRORS
FontCacheChangeCacheSettings will return BadValue if passed an illegal parameters for lowmark, himark or balance fields. SEE ALSO
X(7) AUTHOR
Akio Morita, X-TrueType team, Nozomi Ytow. STABILITY
This API is considered as experimental. The Xfontcache library major revision may be incremented whenever incompatible changes are done to the API without notice. Use with care. X Version 11 libXfontcache 1.0.4 Xfontcache(3)
All times are GMT -4. The time now is 10:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy