Displaying 20 results from an estimated 65 matches for "convering".
Did you mean:
conversing
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 WIne partition on my
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
2017 Nov 08
2
Help Converting Calendars
...ot;2017-10-2","2017-10-3")
myData <- data.frame(dates)
myData$dates <- as.Date(myData$dates, format = "%Y-%m-%d")
> myData
dates
1 2017-10-01
2 2017-10-02
3 2017-10-03
library(ConvCalendar)
p.dates <- as.OtherDate(myData$dates,"persian")
# after convering I get the following list
> p.dates
$day
[1] 9 10 11
$month
[1] 7 7 7
$year
[1] 1396 1396 1396
attr(,"row.names")
[1] 1 2 3
attr(,"class")
[1] "OtherDate"
attr(,"calendar")
[1] "persian"
How do I take that, to end up with
dates p_da...
2012 Aug 06
0
[LLVMdev] Question about llvm JIT
On Mon, Aug 6, 2012 at 9:35 AM, Peng Cheng <gm4cheng at gmail.com> wrote:
> 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 =
2019 Jun 19
1
Converting mdbox to mbox/MailDir
...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
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
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
2007 Mar 31
2
[LLVMdev] PR400 - alignment for LD/ST
Hi Christopher,
On Sat, 2007-03-31 at 15:43 -0500, Christopher Lamb wrote:
>
>
> For the assembly format I assume that it would be a simple optional
> comma delimited alignment parameter at the end of the instruction,
> such as:
>
>
> %tmp5 = load i32* %tmp4, align 4
> store i32 %val, i32* %tmp3, align 4
Yes, correct.
>
>
> Has the format for the
2010 Jun 02
1
how to label the som notes by the majority vote
HI, Dear R community,
I am using the following codes to do the som. I tried to label the notes by
the majority vote. either through mapping or prediction.
I attached my output, the left one dont have any labels in the note, the
right one has more than one label in each note. I need to have only one
label for each note either by majority vote or prediction.
Can anyone give some suggestions or
2017 Nov 08
0
Help Converting Calendars
...ot;2017-10-2","2017-10-3")
myData <- data.frame(dates)
myData$dates <- as.Date(myData$dates, format = "%Y-%m-%d")
> myData
dates
1 2017-10-01
2 2017-10-02
3 2017-10-03
library(ConvCalendar)
p.dates <- as.OtherDate(myData$dates,"persian")
# after convering I get the following list
> p.dates
$day
[1] 9 10 11
$month
[1] 7 7 7
$year
[1] 1396 1396 1396
attr(,"row.names")
[1] 1 2 3
attr(,"class")
[1] "OtherDate"
attr(,"calendar")
[1] "persian"
How do I take that, to end up with
dates p_da...
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 CTLSEP6C504DDAF067.tlv
Jun 17 09:38:10 firewall in.tftpd[22666]:
2018 May 23
1
Re: [PATCH] RFC: v2v: use RHV Setup Tools ISO if available
...alled, 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 ++++++++++++++++++++++++++++++++++++------
> > v2v/virt-v2v.pod | 18 +++++++++++++
> > 2 files changed, 67 insertions(+), 8 deletions(-)...
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 into...