Displaying 20 results from an estimated 72 matches for "aviator".
2002 Sep 06
3
Error on Solaris 9 (2.5.5)
I'm running into some errors I can't figure out.
Situation:
I have a Sparc IPX (2.6 Solaris), a Mac OS X box and an Ultra Sparc 1
running Solaris 9.
I am trying to rsync a web site between the IPX and Ultra 1.
All boxes are running 2.5.5 rsync built from source.
Problem:
Can't get a a sync between the IPX -> Ultra.
IPX = kashmir
Ultra = vortac
Mac = archer
Assumptions:
a).
2007 Aug 10
2
need help to manipulate function and time interval
Hi R-users,
I have to define a noise level function L and its energy in the various
moment of the day by:
if time is between 18:00:00 and 23:59:59 then L[j] <- L[j]+5 and W <-
10^((L+5)/10)
if time is between 22:00:00 and 05:59:59 ==> L <- L+10 and W <-
10^((L+10)/10)
else
L=L and W = W
Could someone help me to realize this function please? You will find my
following
2006 Feb 21
1
I need your help
Hi,
Dear R users
I have problem with the following code. The matrix result must be a matrix
(3x3). But I have obtained a matrix(3x1) and I don't know why.
So, I need your help
Best regards
#####################################################################
taille <- function (delta, t, prob = 0.2)
{
niv.conf <- c(0.90, 0.95, 0.99)
if(niv.conf <- 0.90) {
t <- 1.645
}
2006 Oct 05
2
VGAM Package ?
Hi! R users
I would like to ask you where could we find the VGAM Package. I don't find
it in the list of packages.
Thak you for your help
Lassana KOITA
Etudes de S?curit? et d'Exploitation a?roportuaires / Safety Study &
Statistical analysis
Service Technique de l'Aviation Civile (STAC) / Civil Aviation Technical
Department
Direction G?n?rale de l'Aviation Civile (DGAC) /
2005 Oct 13
1
problems with loop and plot function
Hi all R users,
I have problems with my second loop for drawing the three curves in the
same graphic. I need help please
Thank you in advance
#########################################################################
simulation <- function(k, n){
conc <- seq(0,100,by=0.5)
#choixg <- seq(1, length(conc))
choixg <- rep(0,length(conc))
for (i in 1:length(conc)){
choixg[i] <- (k
2007 Aug 16
1
to combine bwplot + srt option?
Hi R-users,
Could someone help me to combine bwplot and srt option (exemple srt = 45
degree or srt 90 degree)? My graphic contains 146 boxplots, I would like
to label all of them. As you know, labels are not readable.
Thank you for your help in advance!
Lassana KOITA
Chargé d'Etudes de Sécurité Aéroportuaire et d'Analyse Statistique /
Project Engineer Airport Safety Studies &
2001 Sep 14
2
[Fwd: Interview With Huffman Aviation Casts Doubt on Official Story]
emperors1000@aol.com wrote:
>
> This is being sent on behalf of emperors1000@aol.com
> as part of the mailing list that you joined.
> List: emperorsclothes
> URL: http://www.emperors-clothes.com
> ------------------------------------------------------------
>
> URL for this article: http://emperors-clothes.com/interviews/dekkers.htm
>
> Join Emperor's Clothes
2007 May 31
0
VGAM package
Hi, R-users
Could someone help me to understand this following error. I'm using vglm
function in VGAM package
Best regards and thank you for your ehlp
########
mydata <- read.table("Data2_overruns.csv", sep =";", header = T,
row.names=NULL)
> attach(mydata)
>
> y <- mydata$cat.event
> phase.vol <-mydata$phase.vol
> pilote <- mydata$pilote
2006 Mar 27
3
XML Storage?
Hey Folks,
Now that all the fun and games of learning Rails has almost sunk
in it''s time to build something useful. I am tasked with building a
system to control and search our large (and I mean large 1.5 million + and
growing) photograph collection. I have been building databases for years
and after thinking about the situation we decided that trying to store the
2005 Oct 11
2
Problems with plot function
Hello all R users,
My simulation function works correctly, but I have problems with plot
function. You will find the following code using it.
Thank you for your help
##################################################"
simulation <- function(k, n){
conc <- seq(0,10,by=0.5)
#choixg <- seq(1, length(conc))
choixg <- rep(0,length(conc))
for (i in 1:length(conc)){
choixg[i]
2008 Mar 01
2
One quick question concerning R
Just started using 'R'. Nice system. Once quick question: Is it possible to
put plot more than one series against a common 'x variable on the same plot?
In otherwords, I may want a stacked bar chart of line chart containing more
than one series. Could not figure out how to do this.
Thanks for your help.
Marc Diamond
Aviation-Software, Inc.
[[alternative HTML version deleted]]
2005 Oct 12
0
loop for plot function
Hello all R users,
I would like to add another loop to my following R code ( it works for the
moment correctly) , which will be able to me to vary n (see the code) from
1 to 4 or 5.
And I also would like apply the plot function in this case, eg all four or
five figures in the same graphic (n= 1, 2, ..., 4 ou 5)
I have tested one, but unsuccessfully.
I need you to solve this problems
Thank you
2011 Apr 07
1
Please quit publishing my e-mail address
Due to a up-tick in the amount of SPAM my account has been receiving, I
googled my e-mail address, and discovered that my e-mail address, along with
the e-mail addresses of many subscribers to the SAMBA mailing list
(samba at lists.samba.org) are being published in a harvestable form on your
website. Specifically, this page: http://omgili.com/usrmgr.exe-, although
there may be more instances.
2007 Mar 08
2
curve of density on histogram
Hi R users,
I would like to know why these following curve densities don't appear
correctly on the histograms.
Thank you for your help
library(lattice)
library(grid)
resp <- rnorm(2000)
group <- sample(c("G1", "G2", "G3", "G4"), replace = TRUE, size = 1000)
histogram(~ resp | group, col="steelblue",
panel = function(x, ...){
std
2006 Dec 07
2
Splitting a dataframe at the results of tapply
I have got a dataframe containing measurement of aircraft noise like
this:
> Id <- c(1,4,5,2,3,6,4,1,2,5,6,3)
> Noise <- c(88,94,97,98,92,56,103,102,87,95,92,97)
> Height <- c(190, 150, 120, 115, 188, 104, 101, 189, 146, 111, 124,
126)
>
> df <- data.frame(Id, Noise, Height)
Now I would like to split this in two new dataframes. The first one
containing the rows
2009 Dec 16
2
Porting CELt to the C5505
...i.com/docs/prod/folders/print/tms320vc5505.html).
I am having problems with the stack allocation. Do you have any reference code that compiles for the C55x under CCS (code composer studio)?
*******************************
Tony Cave
Senior Embedded Processor FAE
Texas Instruments Limited
3000 Aviator way
Manchester
M22 5TG
Mb: +44-7917-183293
*******************************
Texas Instruments Limited, 800 Pavilion Drive, Northampton, NN4 7YL. Registered in England & Wales under company number 00574102
-------------- next part --------------
An HTML attachment was scrubbed...
URL: htt...
2010 Apr 16
2
Any pitfalls updating straight from 3.0.34 to 3.5.2?
Okay, so I've just put the sernet repo file in my yum.repos.d directory and a yum update will elevate my samba server to the latest version. Is there any pitfall that is out there that I can avoid before yum updating.
Centos 5.3
samba3-3.0.34-37 & related packages
openldap-2.3.43-3.el5 & related packages
I still have my samba3-3.0.34 packages squirreled away so I can force downgrade
2009 Jan 16
2
regshell only goes to HKEY_CLASSES_ROOT
Hi all,
I've compiled samba 4 from branches and it worked like a charm.
I'm trying to use regshell to read (remotely) the following Windows registry
key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
I can connect to the remote machine with no problems:
./regshell --remote=192.168.50.142 --user=Administrador%xxx
HKEY_CLASSES_ROOT>
HKEY_CLASSES_ROOT>
2007 Aug 04
1
CyberPower 1500AVR UPS configuration
Hola
Estic fora de l?oficina des de Dimecres 1 d'Agost fins el proper Dilluns 12 d'Agost, Tan aviat sigui possible li contestar? el seu correu. En cas de ser un tema urgent, preguem reenvi? aquest mateix correu a l?adre?a d?email sst at salicru.com, els meus companys li donaran resposta el mes aviat possible, gr?cies.
Hola
Me encuentro fuera de la oficina del Miercoles 1 de Agosto
2011 Jan 05
2
samba and the Internet discussion
Is it meanwhile save to use samba over the Internet without using VPN ?
Mit freundlichen Gr??en
Michael M?ssler
_________________________
Beratung
uhb consulting AG
Chiemseering 1
84427 St. Wolfgang
__________________________
Tel.: 08085/939 131
Fax: 08085/939 - 2131
WEB: www.uhb-consulting.de <http://www.uhb-consulting.de/>
Sitz der AG