Reading multiple columns in C++


 
Thread Tools Search this Thread
Top Forums Programming Reading multiple columns in C++
# 15  
Old 03-13-2013
It's probably better to use "strtod()" or "atof()" to convert a string to a double, if only because "sscanf()" can and does do weird things when input is not as expected. "strtod()" also provides the ability to know the last character processed, so it's easier to tell if something went bad.
This User Gave Thanks to achenle For This Post:
# 16  
Old 03-13-2013
Can even be done in shell with bc for the floating point, something like:
Code:
while read a b c
do
 f=$(
  ( echo 'e=0
n=0'
    for d in $c
    do
     echo 'n=n+1
e=e+'"$d"
    done
    echo e/n
   ) | bc -l | sed 's/\.*0*$' )
 echo $a $b $f
done <in_file >out_file

I second the sscanf() concerns. I like to validate my inputs -- never give inputs the benefit of the doubt. The man says atof() is strtod() with less error checking. You get to choose. And that is UNIX in a nutshell: lots of options, support for quick, devil-may-care code, but the wise chose the more robust alternatives.

Last edited by DGPickett; 03-13-2013 at 04:24 PM..
# 17  
Old 03-13-2013
hi,
Thanks for the reply..but I am confuses, I need to plot both columns, how am I suppose to plot them the?
So you propose to use shell script to make them like single valued columns..and then call in C++ code to plot?

emily,
Quote:
Originally Posted by DGPickett
Can even be done in shell with bc for the floating point, something like:
Code:
while read a b c
do
 f=$(
  ( echo 'e=0
n=0'
    for d in $c
    do
     echo 'n=n+1
e=e+'"$d"
    done
    echo e/n
   ) | bc -l | sed 's/\.*0*$' )
 echo $a $b $f
done <in_file >out_file

# 18  
Old 03-13-2013
I am sure there are shell friendly graph programs, too. Heck, you can lay down images in text and then call utilities to make them into images! I am never shy about using a popen() to read shell output in C/C++! You can use system() to make an named pipe and sort it to itself, so all you have to do is write the named pipe and then read it. Unlike COBOL, no embedded sort! Smilie
Code:
system( "(mknod p p ; sort -o p p ; rm p )&" );
FILE *f = fopen( "p", "w" );
while (...) { ... fputs( buf, f ); ... }
fclose( f );
f = fopen( "p", "r" );
while ( fgets( buf, sizeof( buf ), f )){...}
fclose( f );

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Reading columns using arrays

Hello, Please help in how to read rows and columns using array and print them. I have below output and i want to store this in array and print the required rows or columns. aaaaaaa 123 bbbbbb 456 ccccccc 888 Use code tags, thanks. (1 Reply)
Discussion started by: Cva2568
1 Replies

2. Shell Programming and Scripting

Removing carriage returns from multiple lines in multiple files of different number of columns

Hello Gurus, I have a multiple pipe separated files which have records going over multiple Lines. End of line separator is \n and records going over multiple lines have <CR> as separator. below is example from one file. 1|ABC DEF|100|10 2|PQ RS T|200|20 3| UVWXYZ|300|30 4| GHIJKL|400|40... (7 Replies)
Discussion started by: dJHa
7 Replies

3. Shell Programming and Scripting

How to split all columns into multiple columns?

Hi, all. How can I split all columns into multiple columns separated by tab? Input: qq ee TT 12 m1 aa gg GG 34 2u zz dd hh 56 4h ww cc JJ 78 5y ss ff kk 90 j8 xx pp mm 13 p0 Output: q q e e T T 1 2 m 1 a a g g G G 3 4 2 u z z d d h h 5 6 4 h w w c c J J 7 8 5 y (8 Replies)
Discussion started by: huiyee1
8 Replies

4. Shell Programming and Scripting

Reading multiple values from multiple lines and columns and setting them to unique variables.

Hello, I would like to ask for help with csh script. An example of an input in .txt file is below, the number of lines varies from file to file and I have 2 or 3 columns with values. I would like to read all the values (probably one by one) and set them to independent unique variables that... (7 Replies)
Discussion started by: FMMOLA
7 Replies

5. Shell Programming and Scripting

Compare multiple files with multiple number of columns

Hi, input file1 abcd 123 198 xyz1:0909090-0909091 ghij 234 999 xyz2:987654:987655 kilo 7890 7990 xyz3:12345-12357 prem 9 112 xyz5:97-1134 input file2 abcd 123 198 xyz1:0909090-0909091 -9.122 0 abed 88 98 xyz1:98989-090808 -1.234 1.345 ghij 234 999 xyz2:987654:987655 -10.87090909 5... (5 Replies)
Discussion started by: jacobs.smith
5 Replies

6. Shell Programming and Scripting

Awk match multiple columns in multiple lines in single file

Hi, Input 7488 7389 chr1.fa chr1.fa 3546 9887 chr5.fa chr9.fa 7387 7898 chrX.fa chr3.fa 7488 7389 chr21.fa chr3.fa 7488 7389 chr1.fa chr1.fa 3546 9887 chr9.fa chr5.fa 7898 7387 chrX.fa chr3.fa Desired Output 7488 7389 chr1.fa chr1.fa 2 3546 9887 chr5.fa chr9.fa 2... (2 Replies)
Discussion started by: jacobs.smith
2 Replies

7. Shell Programming and Scripting

Reading columns, making a new file using another as template

Hi fellas, I have two files such as: File 1 interacao,AspAsp,AspCys,CysAsp,CysCys,classe File 2 interacao,AspAsp,CysAsp,AspCys,CysCys,classe beta_alfa, DA, CA, DD, CD,ppi Thus, I want to make a File 3 using the File 1 as model: e.g. File 3... (2 Replies)
Discussion started by: valente
2 Replies

8. Web Development

mysql query for multiple columns from multiple tables in a DB

Say I have two tables like below.. status HId sName dName StartTime EndTime 1 E E 9:10 10:10 2 E F 9:15 10:15 3 G H 9:17 10:00 logic Id devName capacity free Line 1 E 123 34 1 2 E 345 ... (3 Replies)
Discussion started by: ilan
3 Replies

9. Shell Programming and Scripting

need help with post:extract multiple columns from multiple files

hello, I will would be grateful if anyone can help me reply to my post extract multiple cloumns from multiple files; skip rows and include filenames; awk Please see this thread. Thanks manishabh (0 Replies)
Discussion started by: manishabh
0 Replies

10. Shell Programming and Scripting

Reading columns in tab delimited file

I want to read only one column in "|" delimited file and write that column to a new file. For Ex: Input File 1|abc|324|tt 2|efd|11|cbcb 3||1|fg 4|ert|23|88 Output : I want to read column 3 in diff file. 324 11 1 88 Can anyone give me inputs on this ? (2 Replies)
Discussion started by: net
2 Replies
Login or Register to Ask a Question