Displaying 2 results from an estimated 2 matches for "logowidth".
Did you mean:
log2_width
2005 Oct 06
3
playing with R: make a animated GIF file...
...imated GIF.
------------------
############################ the code
######## reverse the STRING
strReverse <- function(x) sapply(lapply(strsplit(x, NULL), rev), paste,
collapse="")
######## logotype to animate
yourLogo = "Is Nice to play with R-package "
logoWidth = 1.5
logoHeight = 2.5
L = nchar(yourLogo)
TrigSplit = 360 / L
yourLogo = strReverse(yourLogo)
posx = numeric(L)
posy = numeric(L)
for( i in 0:L){
posx[i] = logoHeight * sin(i * TrigSplit * pi / 180)
posy[i] = logoWidth * cos(i * TrigSplit * pi / 180)
}
max_x = max(posx)*1.1
max_y = max(posy...
2009 Jan 02
0
Audiocodes MP-11X configuration to work with Asterisk
...EP_Num_4 = 0
[PSTN Params]
[SS7 Params]
[Voice Engine Params]
EnableSilenceCompression = 1
VoiceVolume = 1
DJBufMinDelay = 70
RFC2833PayloadType = 101
FarEndDisconnectSilenceMethod = 255
FarEndDisconnectSilencePeriod = 300
CallProgressTonesFilename = 'usa_tones_12.dat'
[WEB Params]
LogoWidth = '339'
[SIP Params]
MAXDIGITS = 12
ALWAYSUSEROUTETABLE = 0
TIMEBETWEENDIGITS = 2
TIMEFORDIALTONE = 4
ISSPECIALDIGITS = 0
REGISTRATIONTIME = 3600
ISPROXYUSED = 1
ISREGISTERNEEDED = 1
AUTHENTICATIONMODE = 0
ISTWOSTAGEDIAL = 0
CHANNELSELECTMODE = 2
GWDEBUGLEVEL = 5
ENABLEPROXYKEEPALIVE = 0...