Hi All,
I have a script written that creates a new directory within the shell program and if a parameter isn't passed in, it creates a strange directory name by mistake. So I have a directory like "-_12" and I am unable to remove it. I tried removing it using double quote and many others. I have... (12 Replies)
Dear Members,
We have a file which contains some special characters. I need to replace these special character by a new line character(\n).
The Special character is \x85.
I am not sure what this character means and how we can remove it.
Any inputs are greatly appreciated.
Thanks... (5 Replies)
Hi All,
i am trying to remove all special charecters().,/\~!@#%^$*&^_- and others from a tab delimited file.
I am using the following code.
while read LINE
do
echo $LINE | tr -d '=;:`"<>,./?!@#$%^&(){}'|tr -d "-"|tr -d "'" | tr -d "_"
done < trial.txt > output.txt
Problem
... (10 Replies)
hello all
I am writing a perl code and i wish to remove the special characters for text.
I wish to remove all extended ascii characters. If the list of special characters is huge, how can i do this using substitute command
s/specialcharacters/null/g
I really want to code like... (3 Replies)
Hello all
I am getting data like
col1 | col2 | col3
asdafa | asdfasfa | asf*&^sgê
345./ |sdfasd23425^%^&^ | sdfsa23
êsfsfd | sf(* | sdfsasf
My requirement is like
I have to to read the file and remove all special characters and hex characters ranging form 00-1f from 1st column, remove %"'... (1 Reply)
My application generate file but it have special characters in these file.
I would like to clear special characters by vi editor and not use cat /dev/null > to_file
I try to remove characters manually, but I'm can not!
root@MyHost /tmp> ls -l puzzle.txt
-rw-r--r-- 1 root system ... (5 Replies)
Thank you for 4 looking this post.
We have a tab delimited file where we are facing problem in a lot of funny character. I have tried using awk but failed that is not working.
In the 5th field ID which is supposed to be a integer only of that file, we are getting corrupted data as below.
I... (12 Replies)
Hi Guys,
My requirement is to remove any invisible and special characters from the file like control M(carriage return) and alt numerics and it should not replace @#!$%
abc|xyz|acd¥£ó
adc|123| 12áí
Please help on this.
Thanks
Rakesh (1 Reply)
Hi Guys,
My requirement is to remove any invisible and special characters from the file like control M(carriage return) and alt numerics and it should not replace @#!$%
abc|xyz|acd¥£ó
adc|123| 12áí
Please help on this.
Thanks
Rakesh (1 Reply)
Discussion started by: rakeshp
1 Replies
LEARN ABOUT DEBIAN
plcalc_world
PLCALC_WORLD(3plplot) PLplot API PLCALC_WORLD(3plplot)NAME
plcalc_world - Calculate world coordinates and corresponding window index from relative device coordinates
SYNOPSIS
plcalc_world(rx, ry, wx, wy, window)
DESCRIPTION
Calculate world coordinates, wx and wy, and corresponding window index from relative device coordinates, rx and ry.
Redacted form: General: plcalc_world(rx, ry, wx, wy, window) Perl/PDL: Not available?
This function is used in example 31.
ARGUMENTS
rx (PLFLT, input)
Input relative device coordinate (ranging from 0. to 1.) for the x coordinate.
ry (PLFLT, input)
Input relative device coordinate (ranging from 0. to 1.) for the y coordinate.
wx (PLFLT *, output)
Pointer to the returned world coordinate for x corresponding to the relative device coordinates rx and ry.
wy (PLFLT *, output)
Pointer to the returned world coordinate for y corresponding to the relative device coordinates rx and ry.
window (PLINT *, output)
Pointer to the returned last defined window index that corresponds to the input relative device coordinates (and the returned world
coordinates). To give some background on the window index, for each page the initial window index is set to zero, and each time
plwind(3plplot) is called within the page, world and device coordinates are stored for the window and the window index is incre-
mented. Thus, for a simple page layout with non-overlapping viewports and one window per viewport, window corresponds to the view-
port index (in the order which the viewport/windows were created) of the only viewport/window corresponding to rx and ry. However,
for more complicated layouts with potentially overlapping viewports and possibly more than one window (set of world coordinates) per
viewport, window and the corresponding output world coordinates corresponds to the last window created that fulfils the criterion
that the relative device coordinates are inside it. Finally, in all cases where the input relative device coordinates are not
inside any viewport/window, then window is set to -1.
AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the
PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere.
SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources.
August, 2012 PLCALC_WORLD(3plplot)