Displaying 20 results from an estimated 109 matches for "viceversa".
2009 Apr 15
2
From daily series to monthly and viceversa
...have monthly CPI data and I want to interpolate using the reference
CPI formula in order to obtain the daily series. The time window is the same
(January 1996, December 2008).
Thanks in advance for your help.
--
View this message in context: http://www.nabble.com/From-daily-series-to-monthly-and-viceversa-tp23064454p23064454.html
Sent from the R help mailing list archive at Nabble.com.
2008 Nov 04
2
TIme Series AR to MA and (viceversa)
Hi,
I am new to using R for Time series analysis. I was wondering if there are any functions that can convert ARMA or ARIMA time series into their corresponding AR or MA time series representations (by calculating the corresponding AR or MA coefficients).
Thanks a lot
Kris.
2017 Oct 09
1
Expose aliasing information in getModRefInfo (or viceversa?)
On 10/09/2017 03:57 PM, Daniel Berlin wrote:
> FWIW: Bootstrap is probably not a good test of this, there are bugs
> filed where we end up with tons of loads and stores to test against
> each other. That's actually fairly rare in bootstrap, as you can see.
> Let me get you some test cases.
>
> My guess is that we should go with mustmod.
I agree.
-Hal
>
>
>
2017 Oct 09
3
Expose aliasing information in getModRefInfo (or viceversa?)
Hi,
This came up in https://reviews.llvm.org/D38569, and I'd like some input on
what's the best way to get alias and mod-ref info without having two alias
calls.
A couple of ideas:
(a) Extend the getModRefInfo interface (+getModRefBehavior,
+gerArgModRefInfo) to return a pair {ModRefInfo, AliasResult}.
The AliasResult can be optional based on an argument
e.g.:
struct MRI_AR {
2017 Oct 09
2
Expose aliasing information in getModRefInfo (or viceversa?)
On Mon, Oct 9, 2017 at 1:57 PM, Daniel Berlin <dberlin at dberlin.org> wrote:
> FWIW: Bootstrap is probably not a good test of this, there are bugs filed
> where we end up with tons of loads and stores to test against each other.
> That's actually fairly rare in bootstrap, as you can see.
> Let me get you some test cases.
>
SG, thanks!
>
> My guess is that we
2017 Oct 10
2
Expose aliasing information in getModRefInfo (or viceversa?)
>
> Sigh
> I should have taken the time to give a better example.
> The must-alias part is irrelevant to an example (it only requires
> read-onlyness)
>
> You said "LICM doesn't move calls, so we'd never really care about
> must-alias for promotion". I was just pointing out other things move calls
> any may want to know.
>
> If you want an example
2017 Oct 10
2
Expose aliasing information in getModRefInfo (or viceversa?)
I'm trying to understand what is the result we'd seek in the example
in D38569 (pasting here for quick access)
double f(double a)
{
double b;
double c,d;
double (*fp) (double) __attribute__ ((const));
/* Partially redundant call */
if (a < 2.0)
{
fp = sin;
c = fp (a);
}
else
{
c = 1.0;
fp = cos;
}
d = fp (a);
2005 May 11
5
Status of FAX
Hi people, what is the current status of send/receive fax on asterisk
extensions, i dont want to receive the fax and send an email or viceversa, i
want to connect a standard fax machine to a Linksys' ATA (FXS RJ11 port) .
Webdoc?, pointers?
Thanks
2004 Feb 01
2
setting up ---- newbie
...)
2) be able to call from netmeeting to my pstn fxo port to place calls.
questions :
how can i do this ? what are the commands for this simple setup ?
how can i place calls using a webbrowser (explorer, etc ?)
can i use messenger to call to call my pstn port ?
can i translate h323 to sip and viceversa ?
thanks,
francisco
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20040202/e06283c4/attachment.htm
2007 Dec 02
2
Bidirectional rsync with "trash" support
...ave been common enough to have already been fulfilled by
somebody else through a script or by some backup software.
I have a folder I share between two computers of mine, A and B. What i want
is to be able to keep it in full sync. If a file is added in A, it should be
added to B when rsyncing, and viceversa. If a file is updated, it should be
updated, if it gets moved or renamed, it should be moved or renamed, and so
on; .But I'd like that, when a file is deleted from A, it is *not* deleted
from B immediately, but it is moved to a special trash folder, which I can
later review and decide when to...
2017 Oct 10
2
Expose aliasing information in getModRefInfo (or viceversa?)
Yes, this is odd.
On my clang.bc
Without:
2.2967 ( 53.8%) 0.0242 ( 26.4%) 2.3210 ( 53.2%) 2.3227 ( 53.2%)
Memory SSA
2.3364 ( 53.7%) 0.0246 ( 25.7%) 2.3610 ( 53.1%) 2.3636 ( 53.1%)
Memory SSA
2.3353 ( 54.0%) 0.0258 ( 27.0%) 2.3611 ( 53.4%) 2.3632 ( 53.3%)
Memory SSA
With two getModRefInfo calls:
3.0302 ( 58.8%) 0.0328 ( 29.9%) 3.0630 ( 58.2%) 3.0858 ( 58.2%)
2006 Mar 16
2
Samba and Foxpro for Unix
...ion. And if the user from Visual writes data to the DBF,
there's a data corruption then; because of the concurrent connections from
the FoxPro from Unix.
I think it's a matter of oplock issue between Fox and Samba. Samba opens the
DBF file, without concerns if FoxPro has the file open, and viceversa. When
everyone is running only the Visual application, there's no problem. If the
users are running only FoxPro for Unix, there's no problems. If the users
run FoxPro for Unix for read/write and Visual for read only, there's no
problem.
The problems araise when the users are running Fo...
2007 Apr 18
7
[Bridge] Passing vlan tagged packets through linux bridge
> Use an Intel pro/100 or pro/1000 driver..they are known to
> work with VLANs.
>
> I guess it's also possible that it's a problem in the
> bridging code, so try the latest kernel
> as well...
I compiled the latest 2.6.19 kernel and tested it with two
3COM 3c905c fast ethernet interfaces which work fine with
vlan 802.1q tagging, but when I have added the eth0 and eth1
2017 Nov 28
1
Expose aliasing information in getModRefInfo (or viceversa?)
...anl.gov>; Daniel Berlin <dberlin at dberlin.org>;
>> George Burgess IV <george.burgess.iv at gmail.com>; Sanjoy Das <
>> sanjoy at playingwithpointers.com>
>>
>>
>> *Subject:* Re: [llvm-dev] Expose aliasing information in getModRefInfo
>> (or viceversa?)
>>
>>
>>
>> Hi Nuno,
>>
>>
>>
>> Thanks for taking the time to look over this!
>>
>>
>>
>> Here's the reasoning I reached after going over this again.
>>
>>
>>
>> > "you can go from MustMod...
2012 Jul 12
1
[ovs-discuss] OpenVswitch with KVM virtual machines
.../VM2\
\___/
VM1 & VM2 are of the same subnet. They can ping each other. The ping
packets aren't seen at the controller probably because they are in the
same subnet and they don't need a flow table entry.
VM3 is in a different subnet. So, when I ping from VM1 to VM3 or
viceversa, they aren't reachable to each other. However, the packets do
not arrive at the controller at all. Could you suggest me what might
possibly be wrong.
This is how the bridge looks:
$sudo ovs-vsctl br0 show
Bridge "br0"
Port "vnet1"
Interface "vnet1"
Port "...
2011 Nov 24
1
[LLVMdev] Scheduler information
...ing related
information and SDeps represent all kind of dependencies between them.
Nevertheless, I cannot figure out the graphical form of such structure.
For example, in a simple SDep::Data dependency like the following one:
Node1: def reg1
Node2: use reg1
Is Node1 the predecessor of Node2 or viceversa ?
Regards,
Ivan
2024 Jun 11
1
use of ‘idmap_ldb:use rfc2307 = yes’ in DCs
Me neither. AND only if you need to sync files from a DC to a member server or viceversa, so uids and gids match. Otherwise I?d say no use.
Why idmap_ldb:use rfc2307 = yes? by default then??when provisioning with rfc2307 ?
We are giving instructions to new users how to set up AD idmapping and it is so very complicated because of this, the documentation is confusing at times.
If usin...
2011 Apr 25
1
xenserver and xenvm connectivity issue
...- 192.168.1.1 which is my xencenter installed system.
Xenvm (centos 5.5)
Ip address - 192.168.1.10
Netmask - 255.255.255.0
Gateway - 192.168.1.5 (Xenserver ip)
I am having issue, I am not able to ping or ssh to xenserver (192.168.1.5)
or xencenter system (192.168.1.1) from xenvm (192.168.1.10) or viceversa.
Kindly provide me step which will resolve this issue.
Thanks in advance
Shailesh Chavan
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2003 Apr 24
1
matrix to coordinates
Dear R-users,
I'm sure it must be a specific function or a better way to convert
matrix to x,y,z coordinates (and viceversa), than my function below (it
works). Any help?
m2coord <- function(m)
{
k <- nrow(m)*ncol(m)
aa <- data.frame(r=1:k, c=1:k, v=1:k)
k <- 0
for (i in 1:nrow(m))
for (j in 1:ncol(m))
{
k <- k+1
aa$f[k]=i; aa$c[k]=j; aa$v[k]=m[i,j]
}
aa
}
Juli
--
Juli G. Pausas
Centro de...
2008 Aug 16
1
Pseudo R2 for Tobit Regression
...regression, I used the tobit() method from the AER
package, which is basically a simpler interface to the survreg() method.
I've read about pseudo R2 and C-index and was wondering if there is a
package that calculates this for me. Also, is there a reason to select
pseudo R2 over C-Index, or viceversa?
I will appreciate any suggestions.
Many thanks.
--
View this message in context: http://www.nabble.com/Pseudo-R2-for-Tobit-Regression-tp19014572p19014572.html
Sent from the R help mailing list archive at Nabble.com.