Small part of or a selection from something (code , logs , data and etc.), intended to show the structure, style, or nature of the whole.

learn more… | top users | synonyms

1
vote
3answers
187 views

Sampling in Matlab

So let me start off by saying that I do not have the statistics toolbox for Matlab so I am trying to find a way to work around this. In any case, what I am trying to do is to replicate the R sample ...
0
votes
2answers
525 views

Need to make Bluetooth chat sample application work on my Galaxy S3 or HTC EVO 4G

When I create a new BlueToothChat project on Eclipse, it compiles perfectly fine and I can then download it into my Galaxy S3 (running Android 4.1.1). If the BT is disabled, it asks for it to be ...
0
votes
0answers
94 views

How to convert audio bytes into sample with java

The code below to process the audio signal on red5.Audio signal on red5 is the type of data bytes.I want to change the data type to a sample (float). public void start(IBroadcastStream ...
-2
votes
1answer
209 views

Simplest possible Python audio player? [closed]

I'm looking for an incredibly simple python package for playing sounds. I want to be able to give it a list of "signal heights" ([0,0.1,0.2...]) and hear what it sounds like. I'm not looking for ...
-1
votes
1answer
159 views

Probability of sample from a normal distribution in matlab [closed]

I know this might actually be a simple question, but I don't have that much experience with stats in matlab. I have a normal distribution with a given mu and sigma, I would like to take a random ...
0
votes
3answers
89 views

Most simple polymorphism example in OCaml? [closed]

I am very new to OCaml. Can you please give me the most simple example of polymorphism in OCaml which newbie can understand? I know Java, C# and C++ and also have some sense about functional ...
1
vote
2answers
369 views

Generate a test XML from XML Schema programmatically

I have searched for a bit now, but i'm not able to find a way to autogenerate data from a XML Schema programmatically. Lets say I have this XML schema: <xs:element ...
0
votes
3answers
1k views

How to start an Android source code example on eclipse?

I have downloaded the samples from the SDK manager. Now, I want to know how to start it in eclipse. When starting a new project, I select Android Project from Existing Code. Where can I get the path ...
0
votes
0answers
68 views

is sample size function of population size?

I want to test the accuracy of my population claiming that accuracy level is 95%, i.e null H: p=.95 with confidence of 95% and margin of error of 2%. The formula for determining sample size shows it ...
0
votes
2answers
158 views

Moving an asp.net application to membership model

I have used asp.net so far to create personal web applications, for example, an application where I maintain to-do tasks in an MS SQL Server database or a customer management and support system. I use ...
0
votes
1answer
106 views

Get n random records where n is stored in a table [duplicate]

Possible Duplicate: How to randomly select rows in SQL? Suppose that -- in Teradata 12 -- I have a table TXN that has Transaction_ID and Store_nbr. Suppose also that I have a table SAMP ...
0
votes
1answer
106 views

Removing a random item from a list

As the title says: how to you remove a random item from a list? I am making text based game, and I have a list in which I want to randomly take an item from and then remove it from the list, as seen ...
0
votes
3answers
106 views

Android. Support4Demos crashes

I have runtime errors while executing Support4Demos sample. I'm trying to launch Support4Demos sample (both on emulator and device). There are no errors in Eclipse and it's launched well. As you know ...
0
votes
0answers
123 views

LexicalizedParser sample code not working

I can't get this simple code to run: LexicalizedParser lp = new LexicalizedParser("englishPCFG.ser.gz"); String sent = "This is one last test!"; lp.apply(sent).pennPrint(); I get the Error: "The ...
1
vote
0answers
35 views

sample() producing multiple numbers when size of vector=1 in R [duplicate]

Possible Duplicate: Sampling in R from vector of varying length I have a vector a=5 and would like to use the sample function sample(a). To my surprise this does not always return the ...
0
votes
1answer
93 views

Using modulo operator to get a sample

How can I use the Modulo operator to get a sample? If I have a set of IDs that are just random numbers, and I want a 1% sample, I know I can do 'random_id % 101 = 0'. Does this mean 'random_id % 11 = ...
0
votes
1answer
70 views

Any existing sample for http json service [closed]

I am trying to implement a server that processes the request from an Iphone app. Basically I plan to use json format with http protocol. I believe there must be some existing sample/project that I ...
0
votes
1answer
374 views

Microsoft Sync Framework Toolkit iPhone example: NSInternalInconsistencyException when loading ListViewController

I'm playing with Microsoft Sync Framework iPhone sample, provided with Sync Framework Toolkit available at http://code.msdn.microsoft.com/Sync-Framework-Toolkit-4dc10f0e . I've already corrected ...
1
vote
0answers
340 views

Exception in Stanford Parser sample code? [closed]

The following is sample code to use Stanford Parser API to create a tree output from an array of tokenized strings. This code is available here. import java.util.*; import edu.stanford.nlp.trees.*; ...
-1
votes
1answer
141 views

Where may one get sample 3d models/animations? [closed]

I am currently looking for sample (3ds max) Models and Character Animations (Idle) of high res to render in directX. Something like this would be perfect: http://www.youtube.com/watch?v=-Ics7mywZoE
2
votes
1answer
88 views

questions on random selection based on given weight vector

I am reading the weka implementation on re-sampling an array based on a given weight vector. After reading through the code, I am not sure what’s the algorithm underlying this implementation. In ...
0
votes
0answers
56 views

Changing buffer length / adding delay with Core Audio

I am currently trying to add a delay in my Core Audio project by changing the buffer duration, but the program keeps crashing if I uses this instead of the CurrentHardwareSampleRate. What am I doing ...
0
votes
3answers
448 views

Where can i find objective c xcode sample codes for iphone [closed]

i am a new programer and i would like to find some sample projects to learn from. Do you know any website that might help me? Sample programs such us: Uitable views Uiscroll view Plist storing data ...
29
votes
4answers
18k views

Google Maps Android API v2 - Sample Code crashes

I'm trying to get the sample code of Android 'Google Maps Android API v2' working. I get the project built without errors. However, when I try to run the app on my Galaxy Nexus (connected with usb to ...
0
votes
0answers
67 views

Adding delay to aurioTouch sample program in Xcode

I am very new to Core Audio, and am trying to understand and modify Apple's aurioTouch sample code in order to delay the output by about 70ms. Does anyone have advice on how I can go about adding that ...
1
vote
1answer
218 views

Sample data models for Cassandra?

I found the great DatabaseAnswers site with sample SQL data models for a lot of common use cases. (CRM, e-commerce, popular websites, etc.) The models aren't the richest or most well-architected, ...
3
votes
2answers
353 views

Displaying only the p-value of multiple t.tests

I have replicate(1000, t.test(rnorm(10))) What it does that it draws a sample of size ten from a normal distribution, performs a t.test on it, and does this a 1000 times. But for my assignment I'm ...
3
votes
1answer
695 views

Sql Server Service Broker - thorough, in-use example of externally activated console app

I need some guidance from anyone who has deployed a real-world, in-production application that uses the Sql Server Service Broker external activation mechanism (via the Service Broker External ...
0
votes
1answer
960 views

Finding Sampling Frequency of .wav file in MATLAB

I am reading a .wav file in Matlab. Then I play the read file with a specified sampling frequency 44100Hz. But when I try to play a file sampled at low sampling frequency, it gets played as if I am ...
1
vote
1answer
513 views

Is there an rtmp (protocol) URL anywhere on the internet I can test?

I'm building a video player in flash based on NetStream, and all I need to test it is a functioning rtmp url, but I cannot find a single one on the entire internet through google. Is anyone aware of ...
0
votes
1answer
72 views

Customizing Android sample app

I'm doing some customizations to this Android sample app: HoneycombGallery. I need to execute some extra code when a user switches betweens the tabs (Balloons - Pastries) but running into some ...
4
votes
1answer
2k views

Error compile in “Use Facebook Login example”

i try to create login application in this tutorial : https://developers.facebook.com/docs/howtos/androidsdk/3.0/login-with-facebook/ but i got this error in my logcat: 11-22 15:57:53.863: ...
1
vote
1answer
104 views

PHP Sample to Request and Download Bing Ads Report not working

I'm really stucked on this so any help would be really useful!! I've download the PHP Sample to Request and Download Bing Ads Report: http://code.msdn.microsoft.com/PHP-Sample-that-Shows-How-d817dfe5 ...
0
votes
0answers
47 views

Is there something like UICatalog but for iPad?

Apple's sample code UICatalog is great for looking at examples of controls included in the iOS SDK. However, it only shows off iPhone controls and not iPad controls like popovers and the split view. ...
1
vote
1answer
47 views

From accumulated values to individual values in R

sample1 <- c(9,9,24,24,27,27,39,45,54,54,54,57,57,57,57,66,66,69,75,81,90,102,105,108,120,120,123) how can i make this to (9,0,15,0,3,0...) and so on? what this procedure called?
0
votes
1answer
48 views

Standard terms other than foo and bar [closed]

When providing example code, "foo" and "bar" are commonly used to represent "arbitrary values", to the point they are almost standard notation. Are there more "standard" terms for when you want to ...
2
votes
0answers
232 views

Do any browsers support trailers sent in chunked encoding responses?

HTTP/1.1 specifies that a response sent as Transfer-Encoding: chunked can include optional trailers (ie. what would normally be sent as headers, but for whatever reason can't be calculated before the ...
1
vote
1answer
226 views

Android, launcher and favorite applications

I'm trying to create my own launcher in Android and i use the android sample Home : https://play.google.com/store/apps/details?id=org.frankkie.home&hl=fr The sample is not really easy and there ...
-1
votes
1answer
89 views

Theme of this page http://www.mydearvalentine.com/picture-quotes/ [closed]

I want to know what is model of theme this site and any template are in web like this for wp http://www.mydearvalentine.com/picture-quotes/
0
votes
1answer
65 views

MPL Sample application

I am trying to integrate paypal in my iOS application for selling physical goods but having a really hard time in finding a sample application that makes use of MPL payment. Until now i have been ...
1
vote
0answers
72 views

import sample code from intro(welcome)page,and start a plugin from intro page in eclipse [closed]

i want to import sample code from intro(welcome)page,and start a plugin from intro page in eclipse. i follow the url: Eclipse Intro / Welcome page. but it still not word. i used <a ...
4
votes
1answer
162 views

Sample Function R does not produce uniformly distributed sample

I am creating a survey. There are 31 possible questions, I would like each respondent to answer a subset of 3. I would like them to be administered in a random order. Participants should not answer ...
0
votes
2answers
119 views

Randomly select groups (and all cases per group) in R?

I have an R dataframe with two levels of data: id and year. Within groups defined by id, the years increase (entire dataset has the same (number of) years per group, like so: id year var1 ...
0
votes
1answer
66 views

GraphicsMagick zoom and sample function performance difference

We use GM to do image compressing, and observe a significant performance difference between zoom and sample functions, which we suppose to do the same thing. When using zoom function for a 68k image, ...
0
votes
0answers
108 views

Azure HPC Sample doesn't work

I've tried to run sample MPI application on Windows Azure cluster using this manual. AppConfigure worked well, cluster started, but for some reasons I couldn't run any job at the cluster. When I ...
0
votes
1answer
215 views

OpenCV - Error at hybridtrackingsample.cpp sample

i am trying to run this sample, from the opencv folder named cpp. As i mentioned in the titles its name is hybridtrackingsample.cpp I am not uploading the code here because it has some problems with ...
3
votes
0answers
376 views

Developing android soft keyboard: sample doesn't implement change of form fields correctly

I tried the soft keyboard from scratch and I found an issue when I press the Next button. It works as expected on other keyboards, so I think maybe it’s something that they didn’t think about when ...
2
votes
2answers
318 views

Sampling distribution of the sample mean [closed]

I have a simple question, although I cant find an answer anywhere. I have the following dataset: data.set <- c(7,7,8,8,7,8,9) The question from the Basic Stats book is: What is the sampling ...
1
vote
0answers
947 views

RSTP client Sample Code For ios using LIve555 library [closed]

I am trying to integrate Live555 library in iOS. Is there anybody who has integrated sample code for iOS using Live555 RSTP client?
0
votes
1answer
68 views

Is a frame a sample?

I'm working with sound files in Java for a homework assignment (dealing with wave files only). I've read a lot of articles and information about wave files and the header and everything the only thing ...

1 2 3 4 5 7