Sponsored Content
Full Discussion: Formatting Help
Top Forums Shell Programming and Scripting Formatting Help Post 302623251 by methyl on Friday 13th of April 2012 10:21:20 AM
Old 04-13-2012
Please review your post now I have laid it out with code tags. I can't see a correlation between the two samples.
Are there tab characters in the file?
What mail reader do you use?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

formatting

I've been asking on IRC channels but no one answers me, I need to format my hard drive, normally it's just format c: but c doesn't exist, how do I format when I have linux mandrake installed. Please reply to this quickly, I'm kinda in a rush :( (1 Reply)
Discussion started by: darryll777
1 Replies

2. UNIX for Dummies Questions & Answers

formatting

is it possible to format a powerbook g4 mac? like totally erase the HD then pop in the Mac OS cd and it will boot up an install like windows or any linux? (5 Replies)
Discussion started by: xeron
5 Replies

3. UNIX for Dummies Questions & Answers

formatting

Hi Again Guys , Please i installed linux RH 6.1 on Toshiba , 10G , RAM=128 , 600 MHZ . After i installed linux i got many error messages , seems it was not installed correctly , also when i finished installation it did not ask me for the 2nd installation CD , and when i logged as root , i... (5 Replies)
Discussion started by: tamemi
5 Replies

4. Shell Programming and Scripting

Formatting

I have next part of script: for i in $LIST do echo "`date +"%H:%M:%S"` Converting $i ..."; mysql -uroot some -sABe "ALTER TABLE $i ENGINE=$ENGINE"; done I want to get following output formatting: "OK" must be one under another :) ... (3 Replies)
Discussion started by: mirusnet
3 Replies

5. Shell Programming and Scripting

formatting

I have file with different columns for ex. contents of file "txt" NAME AGE MARKS HARRY 23 89 TOM 12 67 BOB 23 11 and you see its not formatted.Now, I need the file "txt" to be formatted like COLUMN1 COLUMN2 COLUMN3 NAME AGE ... (3 Replies)
Discussion started by: vijay_0209
3 Replies

6. Shell Programming and Scripting

Formatting

Is there a way to make a 2 column output out of the following : 1 2 3 4 5 6 Output : 1 2 3 4 5 6 Thanks, Prasanna (3 Replies)
Discussion started by: prasanna1157
3 Replies

7. Shell Programming and Scripting

formatting of df -k

Hello, I am developing a platform Independant tool that should work for all major unix flavors outlined in this forum(Solaris,Linux, AIX, HPUX, SCO,BSD) Therefore, in order to cover all types of user community, I have deliberately posted the same message on every forum. Please do not think... (9 Replies)
Discussion started by: darsh123
9 Replies

8. Shell Programming and Scripting

help formatting

I need to format a txt file and convert it in CSV. Any "future" column is separated by a newline. FROM: XS1 1.43294 0.0 XS2 1.21824 0.0 TO: XS1,XS2 (2 Replies)
Discussion started by: alfreale
2 Replies

9. Shell Programming and Scripting

Formatting

Good day All, I have requirement where my input data looks like below ] Message5 Expecting Output as 04/MAR/2104 ||| 23:15:45 ||| servername ||| NOTIFICATION |||message1||||||userId|||||| Message5 I could not use space delimiter as in the messages I would be having them as... (2 Replies)
Discussion started by: Tomlight
2 Replies

10. Shell Programming and Scripting

Help with formatting

Hi, I am new to UNIX and need your help in formatting the below input command to the desire output Input: CREATE UNIQUE INDEX XPKTABLE1 ( COL1, COL2 ) ON TABLE_NM; Output: COMMENT ON TABLE DB_NM.TABLE_NM AS 'PK=,COL1,COL2; '; In... (14 Replies)
Discussion started by: varun2327
14 Replies
mlib_SignalCrossCorrel_S16(3MLIB)			    mediaLib Library Functions				 mlib_SignalCrossCorrel_S16(3MLIB)

NAME
mlib_SignalCrossCorrel_S16, mlib_SignalCrossCorrel_S16S, mlib_SignalCrossCorrel_F32, mlib_SignalCrossCorrel_F32S - signal cross correlation SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ] #include <mlib.h> mlib_status mlib_SignalCrossCorrel_S16(mlib_d64 *correl, const mlib_s16 *src1, const mlib_s16 *src2, mlib_s32 n); mlib_status mlib_SignalCrossCorrel_S16S(mlib_d64 *correl, const mlib_s16 *src1, const mlib_s16 *src2, mlib_s32 n); mlib_status mlib_SignalCrossCorrel_F32(mlib_d64 *correl, const mlib_f32 *src1, const mlib_f32 *src2, mlib_s32 n); mlib_status mlib_SignalCrossCorrel_F32S(mlib_d64 *correl, const mlib_f32 *src1, const mlib_f32 *src2, mlib_s32 n); DESCRIPTION
Each of these functions performs cross correlation. For monaural signals, the following equation is used: 1 n-1 correl[0] = --- * SUM (src1[i] * src2[i]) n i=0 For stereo signals, the following equation is used: 1 n-1 correl[0] = --- * SUM (src1[2*i] * src2[2*i]) n i=0 1 n-1 correl[1] = --- * SUM (src1[2*i + 1] * src2[2*i + 1]) n i=0 PARAMETERS
Each of the functions takes the following arguments: correl Pointer to the cross correlation array. In the stereo version, correl[0] contains the cross correlation of channel 0, and correl[1] contains the cross correlation of channel 1. src1 First source signal array. src2 Second source signal array. n Number of samples in the source signal arrays. RETURN VALUES
Each of the functions returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
mlib_SignalAutoCorrel_S16(3MLIB), attributes(5) SunOS 5.10 10 Nov 2004 mlib_SignalCrossCorrel_S16(3MLIB)
All times are GMT -4. The time now is 04:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy