Sponsored Content
Top Forums Shell Programming and Scripting sed or awk to replace a value in a certain line containing a string Post 302615121 by hamnsan on Thursday 29th of March 2012 07:28:24 AM
Old 03-29-2012
it doesnt work at all , it just output the line containing mue..

I also want to keep the format same and inplace editing.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sed conditional string replace for each line

Hi all, I appreciate the enormous amount of knowledge that flows in this forum. I am an average UNIX user. I have many files with lines like the below. I have separated each line with space for ease of reading. I need to replace the first occurance of "/00" with null on those lines that have... (6 Replies)
Discussion started by: Nanu_Manju
6 Replies

2. Shell Programming and Scripting

replace (sed?) a single line/string in file with multiple lines (string) from another file??

Can someone tell me how I can do this? e.g: Say file1.txt contains: today is monday the 22 of NOVEMBER 2010 and file2.txt contains: the 11th month of How do i replace the word NOVEMBER with (5 Replies)
Discussion started by: tuathan
5 Replies

3. Shell Programming and Scripting

awk/sed string search and replace

Need help with either sed or awk to acheive the following file1 ----- In the amazon forest The bats eat all the time... mon tue wed they would eat berries In the tropical forest The bats eat all the time... on wed bats eat nuts In the rain forest The bats eat all the time... on... (2 Replies)
Discussion started by: jville
2 Replies

4. Shell Programming and Scripting

How to use SED or AWK to search and replace an exact string

I have a file DS1 DDS DS I want to replace only "DS" to "DSmail.blah.com" in a lot of files. I tried sed 's/DS/DSmail.blah.com' but it changes all the lines . thanks in advance (2 Replies)
Discussion started by: gubbu
2 Replies

5. Shell Programming and Scripting

sed: how to replace string by another line

hi experts, i would like to do some html-file replacements and encounter the following problem: after cleaning up the file a bit i'd like to replace a regex with a reference and the content of another line. example: /<title>\(*\) - Wikipedia<\/title>/ should be replaced by \1 (the title... (2 Replies)
Discussion started by: chrisnie
2 Replies

6. Shell Programming and Scripting

sed or awk to replace a value in a certain line.

I have an input like following. *DEFINE_CURVE_TITLE Force for tool binder $# lcid sidr sfa sfo offa offo dattyp 3 0 1 .000000 125.00000 0.000 0.000 0 $# a1 ... (5 Replies)
Discussion started by: hamnsan
5 Replies

7. Shell Programming and Scripting

sed or awk to replace a value in a certain line from another file containing a string

Hi experts, In my text file I have the following alot of lines like below. input.k is as follows. 2684717 -194.7050476 64.2345581 150.6500092 0 0 2684718 -213.1575623 62.7032242 150.6500092 0 0 *INCLUDE $# filename... (3 Replies)
Discussion started by: hamnsan
3 Replies

8. Shell Programming and Scripting

sed or awk command to replace a string pattern with another string based on position of this string

here is what i want to achieve... consider a file contains below contents. the file size is large about 60mb cat dump.sql INSERT INTO `table1` (`id`, `action`, `date`, `descrip`, `lastModified`) VALUES (1,'Change','2011-05-05 00:00:00','Account Updated','2012-02-10... (10 Replies)
Discussion started by: vivek d r
10 Replies

9. Shell Programming and Scripting

Multiple line search, replace second line, using awk or sed

All, I appreciate any help you can offer here as this is well beyond my grasp of awk/sed... I have an input file similar to: &LOG &LOG Part: "@DB/TC10000021855/--F" &LOG &LOG &LOG Part: "@DB/TC10000021852/--F" &LOG Cloning_Action: RETAIN &LOG Part: "@DB/TCCP000010713/--A" &LOG &LOG... (5 Replies)
Discussion started by: KarmaPoliceT2
5 Replies

10. Shell Programming and Scripting

Replace string in XML file with awk/sed with string from another

Sorry for the long/weird title but I'm stuck on a problem I have. I have this XML file: </member> <member> <name>TransactionID</name> <value><string>123456789123456</string></value> </member> <member> <name>Number</name> ... (9 Replies)
Discussion started by: cozzin
9 Replies
FFTW(3pm)						User Contributed Perl Documentation						 FFTW(3pm)

NAME
PDL::FFTW - PDL interface to the Fastest Fourier Transform in the West v2.x DESCRIPTION
This is a means to interface PDL with the FFTW library. It's similar to the standard FFT routine but it's usually faster and has support for real transforms. It works well for the types of PDLs for which was the library was compiled (otherwise it must do conversions). SYNOPSIS
use PDL::FFTW load_wisdom("file_name"); out_cplx_pdl = fftw(in_cplx_pdl); out_cplx_pdl = ifftw(in_cplx_pdl); out_cplx_pdl = rfftw(in_real_pdl); out_real_pdl = irfftw(in_cplx_pdl); cplx_pdl = nfftw(cplx_pdl); cplx_pdl = infftw(cplx_pdl); cplx_pdl = Cmul(a_cplx_pdl, b_cplx_pdl); cplx_pdl = Cconj(a_cplx_pdl); real_pdl = Cmod(a_cplx_pdl); real_pdl = Cmod2(a_cplx_pdl); FFTW documentation Please refer to the FFTW documentation for a better understanding of these functions. Note that complex numbers are represented as piddles with leading dimension size 2 (real/imaginary pairs). FUNCTIONS
load_wisdom Loads the wisdom from a file for better FFTW performance. The wisdom is automatically saved when the program ends. It will be automagically called when the variable $PDL::FFT::wisdom is set to a file name. For example, the following is a useful idiom to have in your .perldlrc file: $PDL::FFT::wisdom = "$ENV{HOME}/.fftwisdom"; # save fftw wisdom in this file Explicit usage: load_wisdom($fname); fftw calculate the complex FFT of a real piddle (complex input, complex output) $pdl_cplx = fftw $pdl_cplx; ifftw Complex inverse FFT (complex input, complex output). $pdl_cplx = ifftw $pdl_cplx; nfftw Complex inplace FFT (complex input, complex output). $pdl_cplx = nfftw $pdl_cplx; infftw Complex inplace inverse FFT (complex input, complex output). $pdl_cplx = infftw $pdl_cplx; rfftw Real FFT. For an input piddle of dimensions [n1,n2,...] the output is [2,(n1/2)+1,n2,...] (real input, complex output). $pdl_cplx = fftw $pdl_real; irfftw Real inverse FFT. Have a look at rfftw to understand the format. USE ONLY an even n1! (complex input, real output) $pdl_real = ifftw $pdl_cplx; nrfftw Real inplace FFT. If you want a transformation on a piddle with dimensions [n1,n2,....] you MUST pass in a piddle with dimensions [2*(n1/2+1),n2,...] (real input, complex output). Use with care due to dimension restrictions mentioned below. For details check the html docs that come with the fftw library. $pdl_cplx = nrfftw $pdl_real; inrfftw Real inplace inverse FFT. Have a look at nrfftw to understand the format. USE ONLY an even first dimension size! (complex input, real output) $pdl_real = infftw $pdl_cplx; rfftwconv ND convolution using real ffts from the FFTW library $conv = rfftwconv $im, kernctr $im, $k; # kernctr is from PDL::FFT fftwconv ND convolution using complex ffts from the FFTW library Assumes real input! $conv = fftwconv $im, kernctr $im, $k; # kernctr is from PDL::FFT Cmul Signature: (a(n); b(n); [o]c(n)) Cmul Complex multiplication $out_pdl_cplx = Cmul($a_pdl_cplx,$b_pdl_cplx); Cmul does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cscale Signature: (a(n); b(); [o]c(n)) Cscale Complex by real multiplation. $out_pdl_cplx = Cscale($a_pdl_cplx,$b_pdl_real); Cscale does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cdiv Signature: (a(n); b(n); [o]c(n)) Cdiv Complex division. $out_pdl_cplx = Cdiv($a_pdl_cplx,$b_pdl_cplx); Cdiv does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cbmul Signature: (a(n); b(n)) Cbmul Complex inplace multiplication. Cbmul($a_pdl_cplx,$b_pdl_cplx); Cbmul does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cbscale Signature: (a(n); b()) Cbscale Complex inplace multiplaction by real. Cbscale($a_pdl_cplx,$b_pdl_real); Cbscale does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cconj Signature: (a(n); [o]c(n)) Cconj Complex conjugate. $out_pdl_cplx = Cconj($a_pdl_cplx); Cconj does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cbconj Signature: (a(n)) Cbconj Complex inplace conjugate. Cbconj($a_pdl_cplx); Cbconj does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cexp Signature: (a(n); [o]c(n)) Cexp Complex exponentation. $out_pdl_cplx = Cexp($a_pdl_cplx); Cexp does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cbexp Signature: (a(n)) Cbexp Complex inplace exponentation. $out_pdl_cplx = Cbexp($a_pdl_cplx); Cbexp does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cmod Signature: (a(n); [o]c()) Cmod modulus of a complex piddle. $out_pdl_real = Cmod($a_pdl_cplx); Cmod does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Carg Signature: (a(n); [o]c()) Carg argument of a complex number. $out_pdl_real = Carg($a_pdl_cplx); Carg does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. Cmod2 Signature: (a(n); [o]c()) Cmod2 Returns squared modulus of a complex number. $out_pdl_real = Cmod2($a_pdl_cplx); Cmod2 does not process bad values. It will set the bad-value flag of all output piddles if the flag is set for any of the input piddles. AUTHOR
Copyright (C) 1999 Christian Pellegrin, 2000 Christian Soeller. All rights reserved. There is no warranty. You are allowed to redistribute this software / documentation under certain conditions. For details, see the file COPYING in the PDL distribution. If this file is separated from the PDL distribution, the copyright notice should be included in the file. perl v5.14.2 2012-05-30 FFTW(3pm)
All times are GMT -4. The time now is 10:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy