Sponsored Content
Top Forums Shell Programming and Scripting Help in extracting multiple files and taking average at same time Post 302228200 by ghostdog74 on Saturday 23rd of August 2008 12:03:39 PM
Old 08-23-2008
I see you have been here for a while. How about showing some code on what you did that doesn't work?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Average of elements throught multiple files

Hi, I got a lot of files looking like this: 1 0.5 6 All together there are ard 1'000'000 lines in each of the ard 100 files. I want to build the average for every line, and write the result to a new file. The averaging should start at a specific line, here for example at line... (10 Replies)
Discussion started by: chillmaster
10 Replies

2. Shell Programming and Scripting

Computing average values from multiple text files

Hi, first, I have searched in the forum for this, but I could not find the right answer. (There were some similar threads, but I was not sure how to adapt the ideas.) Anyway, I have a quite natural problem: Given are several text files. All files contain the same number of lines and the same... (3 Replies)
Discussion started by: rbredereck
3 Replies

3. UNIX for Dummies Questions & Answers

Taking a average of a column of numbers

Hey all, I am relatively poor at programming and unfortunately don't have time to read about programming at this current moment. I wanted to be able to run a simple command to read a column of numbers in a file and give me the average of those numbers. In addition if I could specify the... (2 Replies)
Discussion started by: Leonidsg
2 Replies

4. UNIX for Dummies Questions & Answers

Taking the average of two columns and printing it on a new column

Hi, I have a space delimited text file that looks like the following: Aa 100 200 Bb 300 100 Cc X 500 Dd 600 X Basically, I want to take the average of columns 2 and 3 and print it in column 4. However if there is an X in either column 2 or 3, I want to print the non-X value. Therefore... (11 Replies)
Discussion started by: evelibertine
11 Replies

5. Shell Programming and Scripting

Average of a column in multiple files

I have several sequential files with name stat.1000, stat.1001....to stat.1020 with a format like this 0.01 1 3822 4.97379915032e-14 4.96982253992e-09 0 0.01 3822 1 4.97379915032e-14 4.96982253992e-09 0 0.01 2 502 0.00993165137406 993.165137406 0 0.01 502 2 0.00993165137406 993.165137406 0... (6 Replies)
Discussion started by: kayak
6 Replies

6. Shell Programming and Scripting

Script to delete files older than x days and also taking an input for multiple paths

Hi , I am a newbie!!! I want to develop a script for deleting files older than x days from multiple paths. Now I could reach upto this piece of code which deletes files older than x days from a particular path. How do I enhance it to have an input from a .txt file or a .dat file? For eg:... (12 Replies)
Discussion started by: jhilmil
12 Replies

7. Shell Programming and Scripting

Cannot get the correct ans. Using awk in taking average

Hi all, I think so I’m getting the result is wrong, while using following awk commend, colval=$(awk 'FNR>1 && NR==FNR{a=$4;next;} FNR>1 {a+=$4; print $2"\t"a/3}' filename_f.tsv filename_f2.tsv filename_f3.tsv) echo $colval >> Result.tsv it’s doing the condition 2 times, first result... (5 Replies)
Discussion started by: Shenbaga.d
5 Replies

8. Red Hat

Du -sh command taking time to calculate the big size files

Hi , My linux server is taking more time to calculate big size from long time. * i am accessing server through ssh * commands # - du -sh * #du -sh * | sort -n | grep G Please guide me for fast way to find big size directories under to / partition Thanks (8 Replies)
Discussion started by: Nats
8 Replies

9. Shell Programming and Scripting

Average of multiple time-stamped data every half hour

Hi All, Thank you for reading through my post and helping me figure out how I would be able to perform this task. For example: I have a list of continuous output collected into a file in the format as seen below: Date...........Time........C....A......... B ==========================... (5 Replies)
Discussion started by: terrychen
5 Replies

10. Shell Programming and Scripting

Match first two columns and average third from multiple files

I have the following format of input from multiple files File 1 24.01 -81.01 1.0 24.02 -81.02 5.0 24.03 -81.03 0.0 File 2 24.01 -81.01 2.0 24.02 -81.02 -5.0 24.03 -81.03 10.0 I need to scan through the files and when the first 2 columns match I... (18 Replies)
Discussion started by: ncwxpanther
18 Replies
QListBoxPixmap(3qt)													       QListBoxPixmap(3qt)

NAME
QListBoxPixmap - List box items with a pixmap and optional text SYNOPSIS
#include <qlistbox.h> Inherits QListBoxItem. Public Members QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap ) QListBoxPixmap ( const QPixmap & pixmap ) QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap, QListBoxItem * after ) QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text ) QListBoxPixmap ( const QPixmap & pix, const QString & text ) QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text, QListBoxItem * after ) ~QListBoxPixmap () virtual const QPixmap * pixmap () const virtual int height ( const QListBox * lb ) const virtual int width ( const QListBox * lb ) const Protected Members virtual void paint ( QPainter * painter ) DESCRIPTION
The QListBoxPixmap class provides list box items with a pixmap and optional text. Items of this class are drawn with the pixmap on the left with the optional text to the right of the pixmap. See also QListBox, QListBoxItem, and Advanced Widgets. MEMBER FUNCTION DOCUMENTATION
QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap ) Constructs a new list box item in list box listbox showing the pixmap pixmap. QListBoxPixmap::QListBoxPixmap ( const QPixmap & pixmap ) Constructs a new list box item showing the pixmap pixmap. QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pixmap, QListBoxItem * after ) Constructs a new list box item in list box listbox showing the pixmap pixmap. The item gets inserted after the item after, or at the beginning if after is 0. QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text ) Constructs a new list box item in list box listbox showing the pixmap pix and the text text. QListBoxPixmap::QListBoxPixmap ( const QPixmap & pix, const QString & text ) Constructs a new list box item showing the pixmap pix and the text to text. QListBoxPixmap::QListBoxPixmap ( QListBox * listbox, const QPixmap & pix, const QString & text, QListBoxItem * after ) Constructs a new list box item in list box listbox showing the pixmap pix and the string text. The item gets inserted after the item after, or at the beginning if after is 0. QListBoxPixmap::~QListBoxPixmap () Destroys the item. int QListBoxPixmap::height ( const QListBox * lb ) const [virtual] Returns the height of the pixmap in list box lb. See also paint() and width(). Reimplemented from QListBoxItem. void QListBoxPixmap::paint ( QPainter * painter ) [virtual protected] Draws the pixmap using painter. Reimplemented from QListBoxItem. const QPixmap * QListBoxPixmap::pixmap () const [virtual] Returns the pixmap associated with the item. Reimplemented from QListBoxItem. int QListBoxPixmap::width ( const QListBox * lb ) const [virtual] Returns the width of the pixmap plus some margin in list box lb. See also paint() and height(). Reimplemented from QListBoxItem. SEE ALSO
http://doc.trolltech.com/qlistboxpixmap.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qlistboxpixmap.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QListBoxPixmap(3qt)
All times are GMT -4. The time now is 09:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy