search for: ideal

Displaying 20 results from an estimated 10182 matches for "ideal".

Did you mean: deal
2003 Jul 22
3
Ideal Prompt Recording Setup?
What have people found to be the ideal setup for recording asterisk prompts? I'm looking for both the ideal application to record them in, the ideal format, as well as hardware (do I need a fancy studio mic or will a headset mic work?). Thanks, Justin
2008 Sep 19
0
problems with too many NA in the function ideal() from pscl package.
Hi all, I'm trying to run some monte carlo simulation for my roll call data using the ideal() function, which resides in the pscl package. However, I'm receiving an error message that I don't understand. Error in ideal(a, maxiter = 1000, thin = 10, burnin = 50, store.item = TRUE, : NA/NaN/Inf in foreign function call (arg 13) my code is simple the following: > m_a <-...
2005 Jun 02
3
trouble getting speex_echo_cancel() to work
...;re using two different soundcards (as I understand) for the > playback and the capture, you're *never* going to get echo canceller to > work because the playback and capture need to be *exactly* in sync. I did a bit more testing, and ended up creating a set of testsamples, as follows: ideal.pcm => me saying "This is what I'd like to hear" junk.pcm => me saying "With a bit of luck, this is gone" mixdown.pcm => ideal.pcm, with junk.pcm started 7 ms later and 3 dB lower. (All of this as 8000 Hz, 16-bit signed) I then copied junk.pcm to play.sw, mixdown....
2006 Sep 25
2
Can't mix high level and low level plot functions.
Hey R-Comunity, I'd like to print out an histogram of some experimental data and add a smooth curve of a normal distribution with an ideally generated population having the same mean and standard deviation like the experimental data. The experimental data is set as vector x and its name is set to group.name. I paint the histogram as follows: hist(data, freq=FALSE, col="lightgrey", ylab="Density", xlab=group.name...
2006 Aug 16
2
What would the ideal server setup be?
I have one dedicated server for all my various projects (both PHP as well as Rails) and will be getting a second server to run only the Rails apps on. What is the ideal server setup in terms of RAM vs. Processor Speed (more RAM or more processor speed?) and should I use Apace, lighttpd, mongrel, or what? I''ve got the money to afford something pretty solid...just don''t know exactly what would be best. -- Posted via http://www.ruby-forum.com/...
2017 Sep 18
2
how to calculate the ideal value for client.event-threads, server.event-threads and performance.io-thread-count?
Dear All, I just implemented a (6x(4+2)) DISTRIBUTED DISPERSED gluster (v.3.10) volume based on the following hardware: - 3 gluster servers (each server with 2 CPU 10 cores, 64GB RAM, 12 hard disk SAS 12Gb/s, 10GbE storage network) Is there a way to detect the ideal value for client.event-threads, server.event-threads and performance.io-thread-count? Thank you in advance, Mauro Tridici -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.gluster.org/pipermail/gluster-users/attachments/20170918/5acda3bc/attachment.ht...
2008 Jun 27
3
cumulative sum of within levels of a dataframe
...1 3 c 12 3 c 13 3 c 14 3 c 15 3 c I'd like to create another column in the dataframe so it looks like this, and make sure that the cumulative sums still match the right levels of the factor. I've included a "willdo" column that's just a cumulative sum, and an "ideal" column that's the cumulative sum minus the current value - the column headings are self explanatory. > answer x fac willdo ideal 1 1 a 1 0 2 1 a 2 1 3 1 a 3 2 4 1 a 4 3 5 1 a 5 4 6 2 b 2 0 7 2 b 4 2...
2009 Oct 19
1
Best SVM Performance measure?
...orrect on test data B - Higher R2 score but lower percentage labeled correct on test data We're using the val.prob function from the Design library to evaluate our model. Additionally graphs from val.prob are interesting: A - Our "non-parametric" line mostly parallels the ideal line but is just a bit above. B - Our "non-parametric" line mostly parallels the ideal line but is just a bit below. If I understand things correctly, with model A, the actual probability is slightly higher than our predicted probability (not a bad thing for our application - be...
2004 Feb 12
1
Almost Ideal Demand System
Hi there fellow R users, Has anyone got an R example of applying an Ideal demand system, possibly using the library systemfit?? Thanks Wayne Dr Wayne R. Jones Senior Statistician / Research Analyst KSS Limited St James's Buildings 79 Oxford Street Manchester M1 6SS Tel: +44(0)161 609 4084 Mob: +44(0)7810 523 713 KSS Ltd Seventh Floor St James's Buildin...
2013 Feb 21
1
Ideal RAID-1 Stripe Size for IMAP Server ?
...RAID1 and 2x2TB SAS for DATA in RAID1 which is hosted on a HP Smart Array P420 Controller with 1GB in Cache/Battery Backed Up. Both these array's are on the P420 controller. The initial configuring from Array Configuration Tools gives me 256K in Strip Size. On both array's. What would be ideal for the data volume, and or the OS array ? I'm going to run XFS for the DATA volume. Any help and or suggestions would be much appreciated. Thanks allot folks. Best regards, Svavar Reykjavik - Iceland
2017 Sep 20
0
how to calculate the ideal value for client.event-threads, server.event-threads and performance.io-thread-count?
...ear All, > > I just implemented a (6x(4+2)) DISTRIBUTED DISPERSED gluster (v.3.10) volume > based on the following hardware: > > - 3 gluster servers (each server with 2 CPU 10 cores, 64GB RAM, 12 hard disk > SAS 12Gb/s, 10GbE storage network) > > Is there a way to detect the ideal value for client.event-threads, > server.event-threads and performance.io-thread-count? > > Thank you in advance, > Mauro Tridici > > _______________________________________________ > Gluster-users mailing list > Gluster-users at gluster.org > http://lists.gluster.org/mai...
2009 Aug 27
4
TLS / SSL mixed w/ plaintext auth and virtual hosting
...primary dovecot.conf file, and then only setup the single IP that's handling SSL/TLS in the dovecot-ssl.conf (the conf file the SSL/TLS instance loads). This can be time consuming and has no way to automate. It would be terrific if one of the following exists, or potentially could exist: 1. Ideal scenario. A config option which tells TLS to only respond on certain IPs. In our case if a connection attempts to initiate TLS on any IP address except 10.0.0.2, it would respond with no TLS support. This would be ideal as we could continue running just a single dovecot instance. 2. Secondary sc...
2010 May 10
3
scope of a function + lazy evaluation
Hey guys, I have a doubt here , It is something simple I guess, what am I missing out here ?? f <- function(y) function() y tmp <- vector("list", 5) for (i in 1:5) tmp[[i]] <- f(i) tmp[[1]]() # returns 5; z <- f(6) tmp[[1]]() # still returns 5; it should return 6 "ideally" right ??? Even if I dont evaluate the function tmp[[1]] before i.e I do rm(list=ls()) f <- function(y) function() y tmp <- vector("list", 5) for (i in 1:5) tmp[[i]] <- f(i) z <- f(6) tmp[[1]]() # it still returns 5; it should return 6 "ideally" right ???...
2015 Apr 09
15
Calendar and address book with Dovecot
Hi all I recently install Postfix and Dovecot, and so far so good. My assumption was that calendar and address book (similar to Gmail calendar or address book) are part of Dovecot. However I do not see anything concerning them in any of the docs I have read so far. What other software (ideally open source, free) do I need in other to have Calendar and address book so my users can manage their contact on their phones or computer? I have looked at Roundcube already, but my requirement is not necessarily to provide web mail. Thanks Mimi
2006 Oct 30
3
Hmisc or Lattice plot with error bars, Depth (independent variable) on Y axis
I am trying to create some plots of concentration versus depth. I want Depth on the Y axis and the concentrations on the X axis. I also need to plot error bars. The xYplot function in Hmisc is very nearly ideal but I have to put depth on the x-axis to get it to work. When I transpose the X and Y axes in the xYplot command, the error bars disappear (no surprise given the help file). It there a way to get the plot command to flip the axes? That would be ideal as I could use the grouping functions in xYplo...
2009 Apr 20
4
graph with 15 combinations
Dear R helpers, I have a data set with 4 types (W, C, E & S). Now I have values for all types plus all possible combinations (the order is unimportant): W, C, WC, E, WE, CE, WCE, S, WS, CS, WCS, ES, WES, CES & WCES. Ideally I would like to represent everything in one graph and as concise as possible. Drawing 4 circles and depicting it as overlap just gives me 13 out of the 15 possibilities needed (as e.g. depicted here http://www.psy.ritsumei.ac.jp/~akitaoka/classic9e.html in the graph "Four circles surrounding...
2006 Apr 02
5
Showing current user''s information and saving
Hi, I am logging users in and keeping them in session. The problem I am having is showing only a certain logged in user''s information. In the Adverts_Controler: def show @advert = Advert.find(params[:id]) end I am also having issues with saving an advert for an user: def create @advert = Advert.new(params[:advert]) if @advert.save flash[:notice] = ''Advert
2009 Dec 15
7
how to delete file "--filename"??
i have file on CENTOS 4.6 and I tried to delete it failed. I have been tried following way but NOT work: rm -i * rm --filename rm \--filename rm "\--filename" rm '\--filename' any ideal? ___________________________________________________ ??????? ? ???????????????? http://messenger.yahoo.com.tw/
2013 Jul 27
0
[LLVMdev] Ideal way to build llvm and friends?
...is that? Where does libc++abi fit in with all of this (it's not on the release page)? In general it seems like there are a lot of options and the documentation is not up-to-date everywhere, so I'm a bit lost. Note that while building from SVN is an option if it's really important, ideally we only want released packages, optionally with small patches where needed. Thanks, Shea [1]: http://nixos.org/nixpkgs/
2007 Jul 18
0
Ideal number of clusters using the Fanny algorithm
...ocedure for determining the 'best' solution with regards to the number of clusters using the Fanny algorithm for computing fuzzy clusters? The function requires a specification of the number of clusters a priori, but I am interested in determining what number of clusters would result in the ideal fit with the data. Any help/advice/pointers to resources on the WWW would be greatly appreciated. Thank you. Srikanth. [[alternative HTML version deleted]]