similar to: sum in vector

Displaying 20 results from an estimated 2000 matches similar to: "sum in vector"

2010 Nov 19
1
library(datasets)
## i have one question anouth this package.. library(datasets) eurodist ## if i type this i get max distance between european cities > max(eurodist) [1] 4532 ## but i would like get something like this: 4532 Gilbratar - Anthens ## and another one.. ## if a live in barcelona and i would like travel in all cities ## how can i get sum of all distance to other cities... i try
2006 Feb 13
2
bivariate normal distribution
Hi, there. Does anyone know the R function for calculating the cdf of bivariate normal distribution function? Thanks. Yulei [[alternative HTML version deleted]]
2018 Apr 30
5
Need support to build xapian on Windows with Microsoft compiler
Hello, Thank you very much for quick response. I need only xapian-core. As I wrote on my case compilation with Visual Studio 2015 successful, just I have runtime errors, while the same code on LINUX runs fine. I'll try the hints from (https://trac.xapian.org/browser/git/xapian-core/INSTALL?rev=RELEASE/1.4#L54) and maybe to migrate my project to VS2017 and test it again. If I understand
2006 Apr 19
1
Trouble with glm() .... non-integer #successes in a binomial glm
Hi R-people: When I use the command to fit a model with an intercept, only: glm ( formula=haspdata ~ 1, data=dat, family=binomial, weights= dat$hy.wgt.s, subset=(dat$haspdat0!=3) ) I get the message: Warning message: non-integer #successes in a binomial glm! in: eval(expr, envir, enclos) Does anyone know what this means?? The data for this command is listed below. Thanks, Phil Smith CDC
2002 Oct 15
5
Specification change requests
Hi, as Conrad suggested, I've made a complete list of all points in the specification, which I beleive are errors, or where the explanation is unclear, contains unneccessary steps and so on. I hope someone has time to look through the points and if and when accepting or rejecting them be so very kind and inform me about it. I will also once again try to work through the residue
2012 May 05
2
No error message no display output
Hi all, I´m re-starting (as my name indicates) my little knowlegde of CRAN R. I made this function time before but I don´t know where is the error because nothing appears as an error but the histogram plot doesn´t appear. Should I install some special library to run sapply? pru<-function(){ randz<-matrix(rnorm(200000),100,2000) H<-matrix(0,100,2000) for (j in 2:2000){ for (i in
2009 Oct 05
2
Visualizing some data
Hi all, I have an easy data set. It has three columns: Subject, Condition, dprime. A small excerpt follows, in order to illustrate: Subject Condition dprime HY s 3.725846 CM s 2.877658 EH s 5 HY st 2.783553 CM st 2.633955 EH st 5 I want to visualize this. What I thought of was having dprime on the y-axis (scale 0-5), Subject on the x-axis, and then two lines plotted to show the dprime value for
2011 Jun 13
1
Communciation delay betwwn speakers
Hy all of you, I successfully installed an AsterikNow fo a client and almost everything works fine. I can call/recieve in internal with perfect quality. I can do the same with external EXCEPT the little delay in the communication. I have almost 0,5 s of delay between speakers only with outside. I checked the QoS and no packets are lost, I have the G729 installed, configured and declared as
2006 Jul 13
3
colors on graph
Hy all, I need to draw something in 2 dimension that has 3 dimension, the choice has been made to use colors to display the third dimension into the graph. Has someone done something like that, i can't figure out how to parametize the colors. Thks for all ideas, COMTE Guillaume [[alternative HTML version deleted]]
2010 Mar 21
6
Do i really need Dahdi and Libpri.
Hy guys i am having so much hard time to setup asterisk on a virtual machine that i got , i just want to know if i really need to use Dahdi and libpri on a complete Digital PBX i just gonna use sip and iax. I will never use any kind of analog line on this machine. Wait for a feed back. Daniel Abreu.
2009 Sep 14
2
noise from custom encoder/decoder
Hy, I'm totaly out of ideas now. here are links to the code I use. codec.cpp http://barvanjekode.gama.us/temp/1078354945.html codec.h http://barvanjekode.gama.us/temp/135707080.html Variables I use are: int samplerate 32000 uint quality 10 uint complexity = 2 I get that wierd noise after I use speex encoder/decoder. It's like there where empty spaces between each encoded
2003 Jun 25
4
Searching for Doku Samba with LDAP
Hy * I'm searching for Doku acting as an PDC in an Windows environment. I was able to set up the Ldap-Directory itself, storing the Users in the Directory, this all is working. But was not able to let the Workstations join the Domain. Here i don't find Dokumentation about it. Can anyone send me links about Dokumentation about LDAP and Samba, acting as an PDC. Thank you very much
2013 May 07
8
proxy required
Hy I m new to puppet. I ''d like to install epel.repo on a my node and this is the module that I ve created class epel { package { ''epel'': provider => ''rpm'', ensure => installed, source => ''http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm'' } } Now my connection on node when I
2008 Oct 02
6
Nightly yum update did an "upgrade"
Hy there, i have a centos (4.?) Box with nightly yum update enabled. Last night, it did an upgrade to 4.7 leading to several problem i.e. not respawning the dhcrelay, which is needed on this box. Can I control the update policy not to upgrade to new releases in the nightly updates? I would like do to nightly updates, but make release upgrades manual (I get a new kernel, so I have to reboot
2009 Aug 18
2
Change syslog output
Hy! I receive an nxge driver messages on console: Aug 18 11:08:42 [hostname] nxge: NOTICE: nxge_ipp_eccue_valid_check: rd_ptr = XXX wr_ptr = YYY I find the bug description/correction at sun web page, and i know i can ignore it. I thinking about how can i delete from console only these messages (here is my first version, what is not (so) elegant): #!/usr/sbin/dtrace -qs #pragma D option
2007 Jan 04
3
problem with plot() and POSIXt dates
Hy all, I'm plotting graphs using plot() function, they are on X axes POSIX dates: "POSIXt" "oldClass" "POSIXct" "POSIXlt" I can't figure out why sometimes it prints the month and days and sometimes it prints the unix timestamp. It appens usually when the xlim is short like only some days. xlim is settled as a POSIXt like this "2006-12-30
2012 May 10
1
Error t value matrix
Hi all, I want to make the following: I want to run a linear regression on each column of a matrix "estima" on the correspondent column on the matrix "estima2". You see I want to regress estima[,1] on estima2[,1] this way to all columns.... At the same time I want to make a regression adding each time a new observation. You see, the first regression will regress only one
2009 Apr 17
7
WineHQ Ubuntu and FBReplicator
Hy I've got a problem with winehq and FBReplicator from www.meta.com.au i have installed wine then installed the FBReplicator and had run the FBReplManager, this works fine, i had configured a replication DB to another server. Now My problem is that i can't run the FBReplServ.exe if i run it from the bash then it says. fixme:ntdll:RtlNtStatusToDosErrorNoTeb no mapping for 8000000a
2004 Dec 15
2
login pam and mysql
Hy, I use dovecot 0.99.12 on a FC2 and i try to obtain dual login pam and mysql, but seems that it's impossible. I must use or pam or mysql. Do you have any ideea how to obtain dual login. Thanks in advance. _________________________________ Noile abonamente Astral OnLine 256 kbps ; 12 USD/luna http://www.astral.ro
2009 Sep 16
1
noise from decoded file
Hy, can anyone recognize that pixel noise in the playbackfile recorder file: http://www.megafileupload.com/en/file/135429/FMODTestRecording-wav.html playback file: http://www.megafileupload.com/en/file/135431/FMODTestPlayback-wav.html i have no idea what that is anymore. i try everything i know, from changing the way of copying data to different encode/decode algorithms the recorded file is