Displaying 20 results from an estimated 65 matches for "conver".
Did you mean:
convert
2005 Oct 02
2
convering upper triangular matrix into vector
Hi
I have two symmetrical distance matrices and want to compute the correlation
coefficient between them (after turning them into vectors).
Is there a way of selecting only the upper triangular part of each matrix, then
convert this into a vector so I can compute the correlation?
Many Thanks
Eleni Rapsomaniki
2001 Mar 14
2
How to conver the windows registry to wine registries?
All,
This is a more difficult problem than it appears. I would like to convert
the Windows registry that already exists on my machine over to Wine's
registry, but I don't see how that is going to be done since Wine will
look at its own registry and NOT the reg files on my Windows partition.
Do I need to drag the Windows reg files (and what are their names?) to
the W...
2003 Jun 20
6
How can convert user expired days in human readable ?
Hello all,
On my system, some users have expire day user settings. I write a
(python) script
then parse the: 7.th selection in the master.passwd
blabla:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:1064005200:xxxx:xxxx:xxxx:xxxx
How can I conver the number like 1064005200 to human readable date format ?
Or, there is a way to collect the information from a command interactively ?
Regards,
Murat Ustuntas
2008 Feb 21
2
Converence/Meetme with Manager API
Hello! I am having problems figuring out how to do something, and any
help would be much appreciated.
I would like to use the manager API to take an existing call on a
specific SIP extension, dial and conference in a third party.
From what I can tell, the way to do this would be to take the two
original parties on the call and stick them in a meetme room using
Redirect with ExtraChannel,
2012 Aug 06
2
[LLVMdev] Question about llvm JIT
I have a function in llvm ir as follows:
def [2 x [3 x double]] @fun()
{
return [ ... ]; // a [2 x [3 x double]] constant
}
I would like to JIT this function in C.
I first get the void pointer using:
void *FPtr = TheExecutionEngine->getPointerToFunction( func );
Then I need to conver this void pointer to the corresponding C function
pointer
type, and then call the function pointer.
double a[2][3];
CType *FP = (CType*) FPtr;
a = FP();
My question is that:
1. Is this JIT work flow supported by LLVM?
2. If yes, what is correct CType for the JITted function?
3. If not,...
2017 Nov 08
2
Help Converting Calendars
R-Help
Trying to convert a Gregorian calendar dataset to a Persian calendar
dataset. But I end up with a list and not sure what to do. For example ...
dates <- c("2017-10-1","2017-10-2","2017-10-3")
myData <- data.frame(dates)
myData$dates <- as.Date(myData$dates, format = "%...
2012 Aug 06
0
[LLVMdev] Question about llvm JIT
...2 x [3 x double]] @fun()
> {
> return [ ... ]; // a [2 x [3 x double]] constant
> }
>
> I would like to JIT this function in C.
>
> I first get the void pointer using:
>
> void *FPtr = TheExecutionEngine->getPointerToFunction( func );
>
> Then I need to conver this void pointer to the corresponding C function
> pointer
> type, and then call the function pointer.
>
> double a[2][3];
>
> CType *FP = (CType*) FPtr;
>
> a = FP();
>
> My question is that:
>
> 1. Is this JIT work flow supported by LLVM?
Sort of?
>...
2019 Jun 19
1
Converting mdbox to mbox/MailDir
On 19.6.2019 6.39, @lbutlr via dovecot wrote:
> On 18 Jun 2019, at 20:46, Adam Raszkiewicz <araszkiewicz at medallies.com> wrote:
>> maildir -> mdbox it is maildir to mdbox conversion when I'm looking something opposite: mdbox -> maildir
> Please go back and read all the words in my previous reply.
>
doveadm supports convering mdbox to maildir as well, it works pretty
much the same way as maildir to mdbox.
Aki
2008 Jul 25
1
Plink bed files
Hi All,
does anyone know how to import binary .bed files generated by Plink (http://pngu.mgh.harvard.edu/~purcell/plink/
) into R? the Plink FAQ explains how to conver other types of files,
not the .bed.
Cheers,
Federico
--
Federico C. F. Calboli
Department of Epidemiology and Public Health
Imperial College, St. Mary's Campus
Norfolk Place, London W2 1PG
Tel +44 (0)20 75941602 Fax +44 (0)20 75943193
f.calboli [.a.t] imperial.ac.uk
f.calboli [.a.t] g...
2009 Sep 18
1
problem regarding the data
Hi,
This is Meghana Kulkarni.
I have a problem regarding the data I am working with.
I have a data frame as follows:
> x
V1 V2 V3............V10
414 A
416 A
417 A
417 B
418 A
421 A
421 B
421 C
422 A
I want to conver this data frame in the following format.
> x
V1 V2 V3............V10
414 A
416 A
417 A
417 B
418 A
421 A
421 B
421 C
422 A
i.e. I want to insert a blank row after new entry in the 1st column. So that
it is easy for me...
2013 Apr 03
1
how to re-shape a matrix
Hi All,
I have a matrix like
m <- matrix( letters[1:10], ncol=5)
How to conver it to 10 * 3 matrix, which the first col is row index of m, second col is colum index of m and third column is the value of matrix, say
1 1 1 "a"
2 1 2 "c"
1 3 "e"
etc...
Thanks.
[[alternative HTML version deleted]]
2012 Oct 13
1
hep on arithmetic covariance conversion to log-covariance
Dear All,
is there a function in R that would help me convert a covariance matrix built based on arithmetic returns to a covariance matrix from log-returns?
As an example of the means and covariance from arithmetic:
mu <-c(0.094,0.006,1.337,1.046,0.263)
sigma <-matrix(c(0.0037,-0.0001,-0.0370,-0.0136,0.0026,-0.0001,0.0001,0.0008,-0.0015,-0.0011,-0...
2007 Mar 31
2
[LLVMdev] PR400 - alignment for LD/ST
...leaning away from 1, but unsure whether 2 or 3 is better.
3 is best. opcodes are at a premium (six bits) and consuming 8 or more
of them for load/store won't work (there isn't enough left). #2 could
work but it penalizes the (hopefully more common) natural alignment
case. So, I would just conver the Store+Volatile and Load+Volatile
opcodes into Store+Attributes and Load+Attributes. Then the volatile and
alignment attributes can be added for those (relatively uncommon) cases.
Thanks for looking into this Christopher!
Reid.
>
>
> Thanks
> --
> Christopher Lamb
>
>...
2010 Jun 02
1
how to label the som notes by the majority vote
...lassvec2classmat(alex1$outcome), xweight = 0.99, grid=somgrid(20, 30,
"hexagonal"))
outcome.xyf <- predict(final.xyf)$unit.prediction#get prediction
outcome.predict<- as.numeric(classmat2classvec(outcome.xyf)) #change matrix
to vectors.
outcome.label<-LETTERS[outcome.predict] #conver the numeric value to
letters.
plot(final.xyf, type="property", property=outcome.predict,
labels=outcome.label, palette.name =rainbow, main="Prediction ")
cl <- colors()
bgcols <- cl[2:14]
plot(final.xyf, type="mapping", labels=outcome.label, col="black&...
2017 Nov 08
0
Help Converting Calendars
...r
-----------------------------
David L. Carlson
Department of Anthropology
Texas A&M University
-----Original Message-----
From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Jeff Reichman
Sent: Wednesday, November 8, 2017 5:05 PM
To: r-help at r-project.org
Subject: [R] Help Converting Calendars
R-Help
Trying to convert a Gregorian calendar dataset to a Persian calendar
dataset. But I end up with a list and not sure what to do. For example ...
dates <- c("2017-10-1","2017-10-2","2017-10-3")
myData <- data.frame(dates)
myData$dates <...
2013 Jun 17
1
Cisco SSCP to SIP
Hi all,
I'm trying to convers some Cisco SSCP phones to the SIP formware. The phone boots, I see it tries to fetch a bunch of files on my TFTP:
Jun 17 09:37:45 firewall dnsmasq-dhcp[21202]: DHCPACK(eth2) 192.168.10.103 6c:50:4d:da:f0:67 SEP6C504DDAF067
Jun 17 09:38:10 firewall in.tftpd[22666]: RRQ from 192.168.10.103 filename...
2018 May 23
1
Re: [PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...+0200
> Pino Toscano <ptoscano@redhat.com> wrote:
>
> > If the RHV Setup Tools ISO is installed, open it, and copy RHEV APT from
> > there, instead of using (if available) the executable located in the
> > virt-tools data directory.
> >
> > This way, RHV conversion hosts with the RHV Setup Tools ISO installed
> > will always install the latest version when convering Windows guests,
> > no matter which version is (eventually) shipped as virt-tools.
> > ---
> > v2v/convert_windows.ml | 57 ++++++++++++++++++++++++++++++++++++------
&...
2003 Nov 17
5
Struggling with grandstream sip to asterisk
Hello.
I had grandstream working fine to FWD through my firewall.
Now I want it to talk to the asterisk server.
Did lots of reading, attempts but I keep getting registration errors even
though I can call to/from the sip phone from an analog phone on a tdm400
card.
Basically.
grandstream = 192.168.1.70
asterisk = 192.168.1.1
The error I see is ;-
-- Executing Dial("Zap/2-1",
2019 Mar 25
2
Re: [PATCH 2/3] v2v: add Var_expander
On Mon, Feb 25, 2019 at 05:22:51PM +0100, Pino Toscano wrote:
[...]
After being burned a few times with custom parsing (hello, guestfish)
I'm not a big fan.
Is there not an existing C or OCaml library/facility we could use
here? It's a shame we can't use Perl Template Toolkit because it
would be ideal here.
There are all kinds of questions that aren't answered such as: Should
2015 Jun 09
3
[PATCH] podwrapper: simplify external references pointing to self
When convering a POD documentation, possibily combining various
sub-documents together, simplify the L<> links that explicitly point to
the very same documentation being generated.
For example, when generating the virt-builder documentation, links like
L<virt-builder(1)/SECTION>
will be turned i...