Displaying 20 results from an estimated 68 matches for "howmani".
Did you mean:
howmany
2009 Mar 10
6
Pseudo-random numbers between two numbers
I would like to generate pseudo-random numbers between two numbers using
R, up to a given distribution,
for instance, rnorm.
That is something like rnorm(HowMany,Min,Max,mean,sd) over
rnorm(HowMany,mean,sd).
I am wondering if
dnorm(runif(HowMany, Min, Max), mean, sd)
is good. Any idea? Thanks.
-james
2013 Apr 04
15
[Bug 2085] New: fd_mask and howmany are not defined in Android
https://bugzilla.mindrot.org/show_bug.cgi?id=2085
Bug ID: 2085
Summary: fd_mask and howmany are not defined in Android
Classification: Unclassified
Product: Portable OpenSSH
Version: 6.2p1
Hardware: All
OS: Linux
Status: NEW
Severity: minor
Priority: P5
Component: Build system
2001 Jul 27
0
openssh-2.9p2 compilation on LynxOS
To whoever can help me,
I tried to compile OpenSSH-2.9p2 on i386-LynxOS. I
made a
# ./configure --without-pam --without-shadow \
--with-ssl-dir=/usr/local/ssl --with-pcre \
--disable-libutil --sysconfdir=/etc/ssh
Then,
# make
gave the following error:
gcc -o ssh ssh.o sshconnect.o sshconnect1.o
sshconnect2.o sshtty.o reonf.o clientloop.o -L.
-Lopenbsd-compat/ -L/usr/local/ssl/lib -lssh
2000 Jan 17
5
AANOUNCE: openssh-1.2.1pre27
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
A couple of silly errors, and one dangerous bug were in the pre26
release. This release corrects them.
http://violet.ibs.com.au/openssh/files/openssh-1.2.1pre27.tar.gz
If you want RPMs or any of the other files, please use a mirror:
http://violet.ibs.com.au/openssh/files/MIRRORS.html
Changes:
- Using __snprintf is *NOT SAFE* on old Solaris.
2000 Jan 17
5
AANOUNCE: openssh-1.2.1pre27
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
A couple of silly errors, and one dangerous bug were in the pre26
release. This release corrects them.
http://violet.ibs.com.au/openssh/files/openssh-1.2.1pre27.tar.gz
If you want RPMs or any of the other files, please use a mirror:
http://violet.ibs.com.au/openssh/files/MIRRORS.html
Changes:
- Using __snprintf is *NOT SAFE* on old Solaris.
2005 Dec 08
3
Finding all possible partitions of N units into k classes
Dear useRs!
I would like to generate a list of all possible (unique) partitions of N
units into k classes. For example, all possible partitions of 4 units into 2
classes are (I hope I have not missed anyone):
1,1,1,2 (this can be read as {1,2,3},{4})
1,1,2,1
1,2,1,1
2,1,1,1
1,1,2,2
1,2,1,2
1,2,2,1
The partitions 1,1,2,2 and 2,2,1,1 are the same and are therefore not two
unique
2008 Mar 26
3
Loop problem
Dear all, I have a problem with a loop, if anyone has any knowledge on
these things I would appreciate some comments. The code below is
designed to allow me to extract the top record of the data frame, and
them remove rows from the data frame which have an index close to the
extracted top record.
topstorm<-subset(rankeddataset[1,]) ## Extracts the top storm
2004 Mar 23
2
A question on Compilation errors...
Hello
I am attempting to build on a LynxOS platform and am using a old
version of zlib and OpenSSL-0.9.6a. I get past the configure stage by
ignoring the zlib version check. However, at make stage I run into the
following undefineds. Any idea what may be causing this. I am using
version 3.8p1 of OpenSSH.
Thank you in advance for your response
Amba
(cd openbsd-compat && make)
2014 Sep 12
2
[Bug 2274] New: Build fixes for musl libc
https://bugzilla.mindrot.org/show_bug.cgi?id=2274
Bug ID: 2274
Summary: Build fixes for musl libc
Product: Portable OpenSSH
Version: 6.6p1
Hardware: All
OS: Linux
Status: NEW
Severity: normal
Priority: P5
Component: Miscellaneous
Assignee: unassigned-bugs at mindrot.org
2010 Sep 07
1
problems with siar package
Hi, my name is Julio, I'm trying to run a script, specifically with the siar
package on R (I have attached the script) but the program collapses on
during the run. The error message says:
*** caught segfault ***
address 0xb31941cc, cause 'memory not mapped'
Traceback:
1: .C("siarmcmcv4", as.integer(numdata), as.integer(numsources),
as.integer(numiso),
2009 Jan 02
1
R: numerical integration problems
hello all
happy new year and hope you r having a good holiday.
i would like to calculate the expectation of a particular random variable and would like to approximate it using a number of the functions contained in R. decided to do some experimentation on a trivial example.
example
========
suppose x(i)~N(0,s2) where s2 = the variance
the prior for s2 = p(s2)~IG(a,b)
so the posterior is
2004 Apr 22
1
Selection of cities sample
Hi,
I have a question, how to most properly select set of cities
which would be as similar as possible in some particular
variables with the City of Boston (which I use as my base line).
I thought about ordering cities by sum of ((differences between
value of that particular variable for that particular city and
the value of same variable for Boston) divided by the standard
deviation of the
2000 Sep 12
0
OpenSSH 2.2.0p1 port to QNX 4
Dear OpenSSH porting developers,
finally I succeded in porting OpenSSH to QNX 4.
To get things going I had to take over some definitions from Linux'
include files, since they are not available under QNX (e.g. the howmany
makro, NFDBITS, the lastlog structure). With this email I send a patch
with all my changes as well as the file "qnx-term.h" which I created
because IXANY and
2001 Aug 20
1
Idletimeout patch, third attempt
Here is my third attempt at the idletimeout patch. I tried to address
the points which Marcus Friedl brought up.
It is actually bigger than the previous patches, but not as intrusive.
It is big because it moves some stuff from serverloop.c to packet.c.
- I moved all the logic to packet.c. This means that I also had to move
the actual select() call, which used to be in serverloop.c to packet.c.
2012 May 15
2
pass objects into "..." (dot dot dot)
Hello,
Thanks in advance for any help!
How do I pass an unknown number of objects into the "..." (dot dot dot)
parameter? Put another way, is there some standard way to pass multiple
objects into "..." to "fool" the function into thinking the objects are
passed in separately/explicitly with common separation (like "x,y,z" when
x, y and z are objects to be
2013 May 05
2
custom function that plots other functions- problem
Hi everyone!
Could you please help me with the following assignment? My aim is to write
a custom function that draws the plots of functions submitted by the user.
The catch is, that we do not know the exact number of functions the user
will select to draw.
The program is relatively easy with one function, f.e sin:
mf<- function(f,range,quality){
x<- seq(range[1],range[2],
2009 Oct 06
2
Problem with na.omit when using length()
I'm seeing what looks to me like odd behaviour when I use na.omit on a
simple "length" function, as follows.
> sno
[1] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
23 24 25 26 27 28 29 30 31 32 33 34
> a
[1] 0 1 0 0 1 1 0 0 0 0 0 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
> b
[1] 1 1 0 1 1 1 0 0 NA 0 0 0 NA 0 1 NA 0 1 0 0
2006 Sep 11
1
plotting curves
Hi,
I've been trying to recreate plots of that follow a cubic form. The the
original graphs I'm looking at were produced with specialized software
(Delta Graph), and although I can reproduce it almost exactly with R,
the only difference is in the actual display of the curves I've plotted.
I've noticed that in R all curves are pixelated, regardless of howmany
points I use. Is
2001 Jul 17
1
openssh and QNX
Hi.
I have compiled openssh on QNX RTP 6.1, "x86-pc-nto-qnx". Some things to note if anyone should want to update configure and include support for this platform:
* The enthropy device is normally /dev/random
* INTXX and other similar types are in <stdint.h>
* macro howmany, constant NFDBITS and type fd_mask need to be defined. How this can be done has been discussed earlier
2010 Nov 23
2
[Bug 1213] ssh-keyscan exits in mid-way
https://bugzilla.mindrot.org/show_bug.cgi?id=1213
--- Comment #3 from aab at purdue.edu 2010-11-23 12:00:50 EST ---
Created attachment 1961
--> https://bugzilla.mindrot.org/attachment.cgi?id=1961
One attempt at getting the rsa key from a remote server that was having
a number of problems.
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving