lectnote.blogspot.com
February 2014 ~ Computer Science - eGuru
http://lectnote.blogspot.com/2014_02_01_archive.html
Computer Science - eGuru. Friday, February 21, 2014. Simple Method Sending Email using JavaMail API. Import javax.mail.*;. Import javax.mail.internet.*;. Import java.util.*;. Public class JavaMail {. String d email = "fromUsername@gmail.com",. D password = "password", / your email password. D host = "smtp.gmail.com",. D port = "465",. M to = "toUsername@gmail.com", / Target email address. M subject = "Testing",. M text = "Hey, this is a test email.";. Properties props = new Properties();. MG University -...
lectnote.blogspot.com
Classification using Weka - Weka Tutorial 1 ~ Computer Science - eGuru
http://lectnote.blogspot.com/2014/01/classification-using-weka-weka-tutorial.html
Computer Science - eGuru. Thursday, January 23, 2014. Classification using Weka - Weka Tutorial 1. This tutorial gives in depth idea of how the classification in data mining is done using the weka. Click the explorer tab in the weka (Figure 1). Under the Preprocess tab click open file (Figure 2). Open an .arff file to do classification (Figure 3). Click the classify tab, choose the classifier. Click the start button. The result will like the following. THE 8255 PROGRAMMABLE PERIPHERAL INTERFACE. How to p...
lectnote.blogspot.com
MG University - B.Tech Computer Science and Engineering New Syllabus Detailed (Semester 3) ~ Computer Science - eGuru
http://lectnote.blogspot.com/2011/05/mg-university-btech-computer-science_12.html
Computer Science - eGuru. Tuesday, May 31, 2011. MG University - B.Tech Computer Science and Engineering New Syllabus Detailed (Semester 3). EN010301 B Engineering Mathematics II. Number theory and functions. Function – types of functions – composite functions – inverse of a function – pigeon hole principles. Relations – binary relation – types of relations – equivalence relation –partition –equivalence classes – partial ordering relation – Hasse diagram - poset. Lattice as a poset – some propertie...
lectnote.blogspot.com
January 2014 ~ Computer Science - eGuru
http://lectnote.blogspot.com/2014_01_01_archive.html
Computer Science - eGuru. Sunday, January 26, 2014. Multiple ROC Curve for multiple number of classifiers. In my previous post. Open the Weka tool and select the knowledge flow tab. When it is loaded, the first thing is to select ArffLoader from the DataSources menu, which is used to input the data. Drag ArffLoader into the knowledge flow layout as shown in figure 3. From the evaluation tab select the ClassAssigner and put it into the knowledge flow layout. We are going perform the performance of the cla...
lectnote.blogspot.com
March 2013 ~ Computer Science - eGuru
http://lectnote.blogspot.com/2013_03_01_archive.html
Computer Science - eGuru. Sunday, March 10, 2013. The Cigarette Smokers Problem. Multithreading - Multiprocessor operating systems. The Cigarette Smokers Problem. Consider a simulation with three smoker threads and one agent thread. Each. Smoker continuously makes a cigarette and smokes it. But to make a cigarette, a. Smoker needs three ingredients: tobacco, paper, and matches. One of the smoker. Threads has only paper, another has only tobacco, and the third has only matches. Used to specify the ingredi...
lectnote.blogspot.com
Semaphores - Multiprocessor operating systems using Java ~ Computer Science - eGuru
http://lectnote.blogspot.com/2013/03/semaphores-multiprocessor-operating.html
Computer Science - eGuru. Sunday, March 3, 2013. Semaphores - Multiprocessor operating systems using Java. PROGRAM 1 – Semaphores - Multiprocessor operating systems. Assume there are three processes: Pa, Pb, and Pc. Only Pa can output. The letter A, Pb B, and Pc C. Utilizing only semaphores (and no other variables) the processes are. Synchronized so that the output satisfies the following conditions:. A) A B must be output before any C's can be output. AACB - invalid, violates a). Date: 3rd March 2013*/.
lectnote.blogspot.com
December 2011 ~ Computer Science - eGuru
http://lectnote.blogspot.com/2011_12_01_archive.html
Computer Science - eGuru. Thursday, December 1, 2011. Postfix Evaluation using Stack. Filename: postfix evaluation.c. Description: postfix evaluation using stack. Define MAX EXPR SIZE 100. Define MAX STACK SIZE 100. Typedef enum {eos,lparen, rparen, plus, minus, times, divide,mod,operand} precedence;. Char postfixExpr[MAX EXPR SIZE];. Int stack[MAX STACK SIZE];. Int top=-1,postfixCount=0;. Fprintf(stderr, "Stack is full cannot add elements n");. Fprintf(stderr, "Stack is empty cannot delete elements n");.
lectnote.blogspot.com
April 2012 ~ Computer Science - eGuru
http://lectnote.blogspot.com/2012_04_01_archive.html
Computer Science - eGuru. Monday, April 23, 2012. Asymptotic Notation in Algorithms. Suppose we are considering two algorithms, A. For solving a given problem. Furthermore, let us say that we have done a careful analysis of the running times of each of the algorithms and determined them to be. Respectively, where n. Is a measure of the problem size. Then it should be a fairly simple matter to compare the two functions. To determine which algorithm is. But is it really that simple? Then clearly algorithm A.
lectnote.blogspot.com
Multiple ROC Curve for multiple number of classifiers ~ Computer Science - eGuru
http://lectnote.blogspot.com/2014/01/multiple-roc-curve-for-multiple-number_26.html
Computer Science - eGuru. Sunday, January 26, 2014. Multiple ROC Curve for multiple number of classifiers. In my previous post. Open the Weka tool and select the knowledge flow tab. When it is loaded, the first thing is to select ArffLoader from the DataSources menu, which is used to input the data. Drag ArffLoader into the knowledge flow layout as shown in figure 3. From the evaluation tab select the ClassAssigner and put it into the knowledge flow layout. We are going perform the performance of the cla...