Sponsored Content
Top Forums Shell Programming and Scripting Column operation : cosne and sine operation Post 302451766 by shashi792 on Wednesday 8th of September 2010 03:34:22 AM
Old 09-08-2010
No, its no an homework. Its an output file from modelling software, i have to perform the fft and fftshift operation in order to find the channel impulse response.

channel impulse response is given by tht complex number formed in the previous question.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with arithmetic operation

I am using egrep to extract numbers from a file and storing them as variables in a script. But I am not able to do any arithmetic operations on the variables using "expr" because it stores them as char and not integers. Here is my code and the error I get. Any help will be appreciated. #!/bin/sh... (3 Replies)
Discussion started by: emjayshaikh
3 Replies

2. Shell Programming and Scripting

Array operation

Hi, I would like ask for you help for coding array operation. array= ( a b c d e f ) I would like to remove entry "d" from my array and import the remaining entries back to the array. Thanks. (3 Replies)
Discussion started by: phamp008
3 Replies

3. Shell Programming and Scripting

Iterative operation

grep -o '\{1,3\}\.\{1,3\}\.\{1,3\}\.\{1,3\}' then how do i iterate the file names?? (19 Replies)
Discussion started by: ravis83
19 Replies

4. Shell Programming and Scripting

How to do the date operation ???

Dear Brothers and Sisters , If I use the command date , it will echo out today . How can I get the tomorrow date using the command date ? How to I do the date operation ? Thanks you very much :):):):):) (1 Reply)
Discussion started by: youareapkman
1 Replies

5. Solaris

Operation and Maintenance

I gurus of Solaris, I need to do a Procedure concerning in the Maintenance of Solaris Server. What are the parameters that I must be see Periodically in a Server. For example the space I (df -h) must be each week.- In this server exist a Database aplication (Oracle), and log's that increase or... (4 Replies)
Discussion started by: andresguillen
4 Replies

6. Shell Programming and Scripting

column operation using awk

I have atxt file,i want to perform some operation on 3rd coulmn 900.00000 1 1 1 500.00000 500.00000 100000.000 4 4 1.45257346E-07 899.10834 67.780083 -3.0000000 6.9356270 0 4 ... (4 Replies)
Discussion started by: shashi792
4 Replies

7. Shell Programming and Scripting

Enter third column & Perform Operation

I am trying to enter a third column in this file, but the third column should that I call "Math" perform a some math calculations based on the value found in column #2. Here is the input file: Here is the desired output: Output GERk0203078$ Levir Math Cotete_1... (5 Replies)
Discussion started by: Ernst
5 Replies

8. UNIX for Dummies Questions & Answers

Column minus column operation?

I have a two files, file A and B, which have 5 columns, and each 5 columns are made up of random numbers, that means, numbers are all different. They have same amount of lines (Both 1000 lines) I hope to do a operation 1) 2nd column of file A - 2nd column of file B 2) 5th column of... (4 Replies)
Discussion started by: exsonic
4 Replies

9. Shell Programming and Scripting

If then else - Retry operation

I need to read a file line by line, then depending on the contents of each line, type in a code that will get written to an array. The problem I have is when I ask the user to confirm the input code, if it is wrong, how do i Return to ask again? Any thing I try increments the file to the next... (6 Replies)
Discussion started by: kcpoole
6 Replies

10. Shell Programming and Scripting

Do replace operation and awk to sum multiple columns if another column has duplicate values

Hi Experts, Please bear with me, i need help I am learning AWk and stuck up in one issue. First point : I want to sum up column value for column 7, 9, 11,13 and column15 if rows in column 5 are duplicates.No action to be taken for rows where value in column 5 is unique. Second point : For... (12 Replies)
Discussion started by: as7951
12 Replies
RTF_CREATE_CHEBYCHEV(3) 					 rtfilter library					   RTF_CREATE_CHEBYCHEV(3)

NAME
rtf_create_chebychev, rtf_create_butterworth - Creates IIR Chebychev and Butterwoth filters SYNOPSIS
#include <rtf_common.h> hfilter rtf_create_chebychev(unsigned int nchann, int proctype, double fc, unsigned int num_pole, int highpass, double r); hfilter rtf_create_butterworth(unsigned int nchann, int proctype, double fc, unsigned int num_pole, int highpass); DESCRIPTION
rtf_create_chebychev() creates a IIR chebychev filter processing nchann channels of data type specified by proctype with fc as normalized cutoff frequency, whose the Z-transform has num_pole poles and whose the impulse response has a ripple of r This latter is expressed as the ratio between the overshoot (difference between the max value of the response to a unit step and the unit length) and the unit length (ratio not expressed in decibels). rtf_create_butterworth() is the same as rtf_create_chebychev() but creates a butterworth filter (which a special case of a chebychev filter with a ripple of 0). A normalized frequency is the ratio between the absolute frequency and the sampling frequency (i.e. a value of 1.0 refers to the sampling frequency). If highpass is 0, it specifies the filter should be a lowpass. If highpass is non-zero, the should be a highpass. RETURN VALUE
Returns the handle to the created filter in case of success, NULL otherwise. SEE ALSO
rtf_create_filter(3), rtf_destroy_filter(3) EPFL
2010 RTF_CREATE_CHEBYCHEV(3)
All times are GMT -4. The time now is 12:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy