Sponsored Content
Top Forums Shell Programming and Scripting How to delete trailing zeros from a variable Post 302118657 by Chandu2u on Wednesday 23rd of May 2007 11:32:46 AM
Old 05-23-2007
Thx

Thx a lot is thr any way adding check that if it is a float den remove trailing zeros ?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Removing leading zeros from a variable

How do I remove or add leading zeroa from a variable. To make variable 10 characters long when adding zeros. (6 Replies)
Discussion started by: toshidas2000
6 Replies

2. Shell Programming and Scripting

Delete trailing white space

I have a string "disk0 with a trailing white space after it" but I want to get rid of this white space from right to left so that I am left with "disk0" only. Using sed 's/ $//g' doesn't seem to work Any ideas ? Thanks (5 Replies)
Discussion started by: cillmor
5 Replies

3. Shell Programming and Scripting

Append zeros before a value as per variable

Hello- I have a variable which contains a number, I need to populate number of zeros before another value as per this variable value. for example: I have variable X whose content is 5, variable Y whose content is 123 Now append number of zeros as per variable X before varible 'Y'... (4 Replies)
Discussion started by: pasupuleti81
4 Replies

4. Shell Programming and Scripting

Removing trailing zeros using sed

Hello All, I have a csv file with 3 columns. The file which looks like this 47850000,100,233 23560000,10000,456 78650000,560000,54 34000000,3456,3 The first column has 4 trailing zeros. I have to remove 4 trailing zeroes from 1st field. The output file should appear as follows. ... (12 Replies)
Discussion started by: grajp002
12 Replies

5. Shell Programming and Scripting

How to delete ending/trailing spaces using awk,sed,perl?

How to delete ending/trailing spaces using awk,sed,perl? Input:(each line has extra spaces at the end) 3456 565 3 7 35 878 Expected output: 3456 565 3 7 35 878 (5 Replies)
Discussion started by: cola
5 Replies

6. Shell Programming and Scripting

tr command to delete zeros

Hi, I have a input string 0000106 I need to extract the number after leading zeros ie the number 106. I used the command tr -d "0" and got the output as 16. Could any one of you please help me in using the tr command to get the output 106. Thanks in advance.... (2 Replies)
Discussion started by: dean_amrita
2 Replies

7. UNIX for Dummies Questions & Answers

delete trailing whitespace from end of each line in column 1 only

Hi All. How can I convert this: ABC_1_1 ABC_1_2 ABC_1_3 into this: ABC_1 1 ABC_1 2 ABC_1 3 I tried this command but it is not working: awk '{sub(/+$/,"\t", $1)}{print}' Any suggestions on how to fix this? Thank you :wall: Please use code tags when posting data and... (3 Replies)
Discussion started by: danieladna
3 Replies

8. Shell Programming and Scripting

Remove trailing zeros

Hi I have a simple request but can't find the answer. I want to remove trailing zeros, and in some cases the fullstops, from the input data. Example of input file: FR002_15.000_20.000 SD475_5.000_10.500 FG5647_12.250_15.500 BH2463_30.555_32.000 Desired output file would be: ... (10 Replies)
Discussion started by: theflamingmoe
10 Replies

9. UNIX for Beginners Questions & Answers

Remove trailing zeros from numbers

Hi, I am trying to remove trailing zeros from numbers in a csv file. CSV Input : 0.5000,abc,2.00,2.400,285.850,285a.850,205.180800,mno000,a0b0,2.860 Expected Output : .5,abc,2,2.4,285.85,285a.850,205.1808,mno000,a0b0,2.86 Can you please help. Thanks. (11 Replies)
Discussion started by: manubatham20
11 Replies

10. Shell Programming and Scripting

Delete all lines without a trailing semi colon

shell : bash os : RHEL 7.2 I have a file like below 61265388 1-11Y5C-7690 1-11Y4Q-6763 INSERT INTO emp VALUES('oramds:test.xref','CBS_01','MIGWO161265388','61265388','N',SYSDATE); INSERT INTO emp VALUES('oramds:test.xref','COMMON','MIGWO161265388','MIG1COMMON61265388','N',SYSDATE);... (3 Replies)
Discussion started by: kraljic
3 Replies
math::rationalfunctions(n)					       Math						math::rationalfunctions(n)

__________________________________________________________________________________________________________________________________________________

NAME
math::rationalfunctions - Polynomial functions SYNOPSIS
package require Tcl ?8.4? package require math::rationalfunctions ?1.0.1? ::math::rationalfunctions::rationalFunction num den ::math::rationalfunctions::ratioCmd num den ::math::rationalfunctions::evalRatio rational x ::math::rationalfunctions::addRatio ratio1 ratio2 ::math::rationalfunctions::subRatio ratio1 ratio2 ::math::rationalfunctions::multRatio ratio1 ratio2 ::math::rationalfunctions::divRatio ratio1 ratio2 ::math::rationalfunctions::derivPolyn ratio ::math::rationalfunctions::coeffsNumerator ratio ::math::rationalfunctions::coeffsDenominator ratio _________________________________________________________________ DESCRIPTION
This package deals with rational functions of one variable: o the basic arithmetic operations are extended to rational functions o computing the derivatives of these functions o evaluation through a general procedure or via specific procedures) PROCEDURES
The package defines the following public procedures: ::math::rationalfunctions::rationalFunction num den Return an (encoded) list that defines the rational function. A rational function 1 + x^3 f(x) = ------------ 1 + 2x + x^2 can be defined via: set f [::math::rationalfunctions::rationalFunction [list 1 0 0 1] [list 1 2 1]] list num Coefficients of the numerator of the rational function (in ascending order) list den Coefficients of the denominator of the rational function (in ascending order) ::math::rationalfunctions::ratioCmd num den Create a new procedure that evaluates the rational function. The name of the function is automatically generated. Useful if you need to evaluate the function many times, as the procedure consists of a single [expr] command. list num Coefficients of the numerator of the rational function (in ascending order) list den Coefficients of the denominator of the rational function (in ascending order) ::math::rationalfunctions::evalRatio rational x Evaluate the rational function at x. list rational The rational function's definition (as returned by the rationalFunction command). order) float x The coordinate at which to evaluate the function ::math::rationalfunctions::addRatio ratio1 ratio2 Return a new rational function which is the sum of the two others. list ratio1 The first rational function operand list ratio2 The second rational function operand ::math::rationalfunctions::subRatio ratio1 ratio2 Return a new rational function which is the difference of the two others. list ratio1 The first rational function operand list ratio2 The second rational function operand ::math::rationalfunctions::multRatio ratio1 ratio2 Return a new rational function which is the product of the two others. If one of the arguments is a scalar value, the other ratio- nal function is simply scaled. list ratio1 The first rational function operand or a scalar list ratio2 The second rational function operand or a scalar ::math::rationalfunctions::divRatio ratio1 ratio2 Divide the first rational function by the second rational function and return the result. The remainder is dropped list ratio1 The first rational function operand list ratio2 The second rational function operand ::math::rationalfunctions::derivPolyn ratio Differentiate the rational function and return the result. list ratio The rational function to be differentiated ::math::rationalfunctions::coeffsNumerator ratio Return the coefficients of the numerator of the rational function. list ratio The rational function to be examined ::math::rationalfunctions::coeffsDenominator ratio Return the coefficients of the denominator of the rational function. list ratio The rational function to be examined REMARKS ON THE IMPLEMENTATION
The implementation of the rational functions relies on the math::polynomials package. For further remarks see the documentation on that package. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category math :: rationalfunctions of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhance- ments you may have for either package and/or documentation. KEYWORDS
math, rational functions CATEGORY
Mathematics COPYRIGHT
Copyright (c) 2005 Arjen Markus <arjenmarkus@users.sourceforge.net> math 1.0.1 math::rationalfunctions(n)
All times are GMT -4. The time now is 02:20 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy