Is there a way to change the corner's radius of a rectangle in PowerPoint?
If I make it with straight lines and arcs of circle, even if I group the pieces when I copy the shape over the pieces do not stay connected at the ends.
If I use the rectangle with rounded corners provided, the radius of...
I have a file with about 200,000 lines. They are 0.01 sec apart. I want to pick every Nth line and copy to a separate file. The time appears on column 18th. I named the AWK file "Decimate".
I have tried:
BEGIN { time = 61400}
{{ if ( $18 > time )
print $0 >> "Output_file.asc"}
time = time...
I have two Excel books opened (not two sheets on the same book) and I try to copy the equations from cells on one book to cells on the other book and all I get is the value the cell had on the first book rather than copying the equations.
I can copy the equations from the formula bar, but I...
I am requesting, through AWK, for the operator to enter a filename:
Ans = 0
BEGIN {while (Ans == 0) {
{printf "Enter file Name: "
getline name < "-"
}
{printf "This is the name you entered: "
print name
printf "Is that correct? 1, 0 "
getline Ans < "-"
print Ans
}...
I need to modify a file and rename it. Tried:
awk -f modfile oldname new=newfile.fmt
(Tried also: awk -f modfile oldname new="newfile.fmt")
and modfile has lines such as
{print " mod1 " > new}
{print " mod2 " > new}
The modfile works if I change the lines to read:
{print " mod1 " >...
I have two files that I want to merge. Both have the same number of lines and I want to merge them line by line. The data is tab delimited and may contain floating points as well as Boolean. They may have over 100 lines each; but the files to be merged will always have the same number of...
I have 2 files with equal number of rows and the value of the first column is the same on both:
file1: (columns 1, 2, 3, 4)
1 5 3 4
2 2 1 3
3 1 5 8
4 7 8 6
...
file2: (columns 1, 2, 3 , 4, 5)
1 1 0 0 1
2 1 1 0 0
3 1 1 0 0
4 0 0 0 1
...
I want to create another file from file1 depending of...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.