Factorize some rows in a column


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Factorize some rows in a column
# 1  
Old 03-21-2006
Factorize some rows in a column

HI!

I have a file containing a column of numbers with 69 rows.
I won't to factorize row 20 to 50 with 1.03
How do I do that?
(I'm a beginner as you easily can understand)
# 2  
Old 03-21-2006
seems like a homework question.
ok show us what you tried.
# 3  
Old 03-21-2006
As I sad, i'm a beginner

I have

list/file containing:

10
20
10
45
43
named "test.txt"

This is what I won't to do.

10
20*1,03
10*1.03
45
43

and then crerate a new file with the modified data, named "test_mod.txt"

It is an extremly simple operation (I presume).
Best Regards!
# 4  
Old 03-21-2006
Hi frebo,
this really is very simple.
but it seems like a homework assignment to me.
and as per the rules of this forums this is not allowed, unless and until you have tried your best for getting the answer.
So first post what you have tried on your own,

Regards,
Gaurav
# 5  
Old 03-21-2006
this is a very strange forum

I will be back
# 6  
Old 03-21-2006
a hint to work with

saying that a thing is strange is a relative term.
something strange for you may not be strange for someone else.

You are always welcome with your queries, but this forum strictly discourage any homework assignment where the aim is to get the answer without working hard for it. The proper way of learning is try it yourself first.

Now your hint,

You can use awk for it and use NR field in it.
NR is the current record number on which awk is operating.

Gaurav
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting Single Column into Multiple rows, but with strings to specific tab column

Dear fellows, I need your help. I'm trying to write a script to convert a single column into multiple rows. But it need to recognize the beginning of the string and set it to its specific Column number. Each Line (loop) begins with digit (RANGE). At this moment it's kind of working, but it... (6 Replies)
Discussion started by: AK47
6 Replies

2. UNIX for Dummies Questions & Answers

[Solved] Deleting all rows where the first column equals the second column

Hi, I have a tab delimited text file where the first two columns equal numbers. I want to delete all rows where the value in the first column equals the second column. How do I go about doing that? Thanks! Input: 1 1 ABC DEF 2 2 IJK LMN 1 2 ZYX OPW Output: 1 2 ZYX OPW (2 Replies)
Discussion started by: evelibertine
2 Replies

3. UNIX for Dummies Questions & Answers

merging rows into new file based on rows and first column

I have 2 files, file01= 7 columns, row unknown (but few) file02= 7 columns, row unknown (but many) now I want to create an output with the first field that is shared in both of them and then subtract the results from the rest of the fields and print there e.g. file 01 James|0|50|25|10|50|30... (1 Reply)
Discussion started by: A-V
1 Replies

4. Shell Programming and Scripting

awk command to print only selected rows in a particular column specified by column name

Dear All, I have a data file input.csv like below. (Only five column shown here for example.) Data1,StepNo,Data2,Data3,Data4 2,1,3,4,5 3,1,5,6,7 3,2,4,5,6 5,3,5,5,6 From this I want the below output Data1,StepNo,Data2,Data3,Data4 2,1,3,4,5 3,1,5,6,7 where the second column... (4 Replies)
Discussion started by: ks_reddy
4 Replies

5. UNIX for Dummies Questions & Answers

Converting column to rows for every 3 lines in the column

Hi gurus! Please help me with this one. I have an file with the following contents: a b c d e f g h i j I would like to make to transform it to look like this as my output file: a,b,c d,e,f (4 Replies)
Discussion started by: kokoro
4 Replies

6. Shell Programming and Scripting

Rows to Column

I have a tab delimited file like this: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 I want it to look like: 1 7 13 2 8 14 3 9 15 4 10 16 5 11 17 6 12 18 (3 Replies)
Discussion started by: theawknewbie
3 Replies

7. UNIX for Dummies Questions & Answers

How to sum rows in e.g. column 1 by a category in e.g. column 2

Hi, I've shown an example of what I would like to achieve below. In the example file, I would like to sum the values in column 2 for each distinct category in column 3 (presumably making an array?) and print the sum as well as the category name and length (note:length always corresponds with... (8 Replies)
Discussion started by: auburn
8 Replies

8. Shell Programming and Scripting

Column to Rows

I need some help with this. I got a file with the following format : switch A port 2/6 port 2/7 port 3/8 switch B port 1/2 port 1/5 switch C port 3/1 port 3/2 port 3/3 port 3/4 etc ... I need this to be converted into : (5 Replies)
Discussion started by: pepo2
5 Replies

9. Shell Programming and Scripting

column to rows based on another column...

Guys, i have a file in below format where the barcode's are uniq per site but could be repeated for different site. so i want to convert the site column to rows based on the barcode's as below output. your help is appreciated!!! input: SITE BARCODE QTY SP CP 10001 6281103890017 10 50 48... (5 Replies)
Discussion started by: malcomex999
5 Replies

10. UNIX for Dummies Questions & Answers

Howto Simplify/Factorize Exports in .bash_profile

Dear expert, My .bash_profile contain the following lines: # User specific environment and startup programs export CFLAGS="-I $HOME/.libstree/include"; export LDFLAGS="-L $HOME/.libstree/lib"; export LD_LIBRARY_PATH=/home/ewijaya/MyBioTool/libstree-0.4.2/lib:${LD_LIBRARY_PATH} export... (1 Reply)
Discussion started by: monkfan
1 Replies
Login or Register to Ask a Question