photo

Mohan


Anna University

Aktiv seit 2012

Followers: 0   Following: 0

Nachricht

Professional Interests: Image Processing, Signal Processing, Communication Systems

Statistik

MATLAB Answers

11 Fragen
5 Antworten

RANG
8.756
of 301.763

REPUTATION
5

BEITRÄGE
11 Fragen
5 Antworten

ANTWORTZUSTIMMUNG
81.82%

ERHALTENE STIMMEN
3

RANG
 of 21.413

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 176.447

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 3
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Does the following image classification problem be termed as image retrieval ?
%------------ taken from matlab help ---------- % %-----------------------------------------------% %-------------- svmcla...

mehr als 13 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
SOM -How do I use SOM in matlab for images
Use the learnsom function in Neural Networks Toolbox

mehr als 13 Jahre vor | 0

Beantwortet
How to export data (simulation result) from MATLAB to excel?
Try this line after the end. xlswrite('D:\data.xlsx',Jfn,'Sheet1','A1'); Create the file data.xlsx in the D drive and clos...

mehr als 13 Jahre vor | 1

Beantwortet
About Neural Network..... How to train Neural Network?
Use the train function after declaring your net as follows : net=newff(minmax(in'),[20,1],{'tansig','purelin'},'train'); [...

mehr als 13 Jahre vor | 0

Beantwortet
First Neural Network Using XOR
The implementation of the XOR with neural networks is clearly explained with Matlab code in "Introduction to Neural Networks Usi...

mehr als 13 Jahre vor | 0

Beantwortet
neural network test with a new data set
The testing is usually done as follows : a = sim(net,testInput'); where net is the narx net in your program, testI...

mehr als 13 Jahre vor | 1

Frage


How the support vectors in the svmtrain function, converge the input data into a small subset ?
The input to the svmtrain function is a matrix with the dimension 151x22. While applying the svmtrain function with the above...

mehr als 13 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to put strings inside the cell of an array continously ?
is it possible to have a single line inside a for loop for generating the following code ? %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ...

mehr als 13 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Why the mean square error value is changing for different training functions ?
I have used the training function "traingdm" in training my neural network. _ %%%%%%%%%%%%%%%%%%%%% net=newff(minmax(i...

mehr als 13 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Why is the mean square value changing to an another value for a different training function ?
clc; clear all;close all; seed = 2; rand('seed',0); co=1; % Testing takes pleace for co number of runs and average is...

mehr als 13 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Why the code is giving different results, every time I run it ???
clc;clear all;close all; net = newff([-10 10],[4 1],{'tansig','purelin'}); p = [-10 -5 0 5 10]; t = [0 0 1 1 1]; y...

mehr als 13 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Problem in finding the skewness for the blocks of an image
clc; clear all; close all; b = imread('D:\PT\gund\image0006.png'); b1 = rgb2gray(b); c = imresize(b1, [64...

mehr als 13 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to use learning functions of neural network toolbox ?
Is it possible to find the weight matrix dW with limited input parameters ? for example, in using learnh ( hebb learning f...

mehr als 13 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to learn neural networks ?
Could you please suggest some ways or some books on learning neural networks ... :(

fast 14 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to set targets in neural networks ?
For example, in using nftool ( fitting tool ) and in loading the "House Pricing" default example data set. There are two var...

fast 14 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How to find "number of pixels" for a particular "gray level" in using HIST function ?
Hi, I am working on image processing. In using the hist function, I want to know, how to get the "number of pixels" for a ...

fast 14 Jahre vor | 2 Antworten | 1

2

Antworten