Programming Tips
Friday, 16 August 2013
Install sv journal template on your Word
›
1. Download Sv-journ template from ftp://ftp.springer.de/pub/Word/journals 2. Extract the zip on your local directory. 3. Double cl...
Wednesday, 7 August 2013
Latent Semantic Indexing Matlab Code
›
In below we give the code of lsi on matlab. function sim = lsi_calc(A,q,k) [m,n] = size(A); [U,S,V] = svds(A,k); qc = q'*U*inv(S...
MATLAB code for read image from webcam
›
In below code to read image from web cam then write the image on your local directory. vid = videoinput('winvideo',1); testpic ...
Friday, 2 August 2013
Face Detection Matlab Code
›
Following code used to detect the face. faceDetection.m function detectfce = faceDetection(I) faceDetector = vision.CascadeObjectD...
Neural Network with hidden Layers Example on Matlab | Matlab Neural Network with 2 hidden Layers
›
Neural network is one of the artificial intelligence technique,it solve problems in more areas ,like as patter recognition,clustering ,fitt...
Monday, 29 July 2013
Change date format from dd-mm-yyyy to yyyy-mm-dd in java
›
import java.util.Collections; import java.util.Vector; /** * * @author RajBharath */ public class nCrCombination{ /** ...
Get all Possible nCr Combinations in Java
›
In below code to give the results of 1 2 3 4 5. 11 12 13 14 15 nCr combination values. import java.util.Collections; import java.util.V...
‹
›
Home
View web version