Beantwortet
NN accuracy on test set low
See my example at http://www.mathworks.com/matlabcentral/newsreader/view_thread/334932#919949 Hope this helps. Greg

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Zero crossing detection in Simulink
if(a(i)*a(i+1)<0) Hope this helps. Greg

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
??? Undefined function or variable - Matlab R2011a
lookfor ampplot

mehr als 12 Jahre vor | 0

Beantwortet
Compute FFT consecutively in Matlab
output(aa) is a scalar output(aa,:) is a row vector Hope this helps. *Thank you for formally accepting my answer* Gr...

mehr als 12 Jahre vor | 0

Beantwortet
Help selecting a search algorithm, dsearchn, knnsearch, etc.
>> min([ 1 1 2 2 3 3]) ans = 1 Hope this helps. *Thank you for formally accepting my answer* Greg

mehr als 12 Jahre vor | 0

Beantwortet
Lag Space in NARX NN
Many code examples have been posted. Search on greg nncorr narxnet Hope this helps *Thank you for formally accepting ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how to do feature extraction based on NDVI vlaues using neural networks?
help patternnet doc patternnet Search the NEWSGROUP and ANSWERS using judicious combinations of NEURAL, IMAGE, CLASSIFICAT...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
training multilabel data with traingdm function of Neural network toolbox
For classification/pattern-recognition, newpr is favored over newff For regression/curve-fitting, newfit is favored over new...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
NN accuracy on test set low
1. Not necessary to specify default process functions. 2. How did you know my birthdate is 4151941 ?? 3. You are reusing th...

mehr als 12 Jahre vor | 1

Beantwortet
artificial neoural network FFBP algorithm
Without seeing your code, or other details, the only thing I can recommend is to search for my code in the NEWSGROUP and ANSWERS...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
looking for a function similar to mapminmax
minA = min(A(:)) maxA = max(A(:)) (B- minB)/(maxB-minB) = (A-minA)/(maxA-minA) B = minB +(maxB-minB)*(A-minA)/(maxA-...

mehr als 12 Jahre vor | 1

Beantwortet
Can anyone tell what does this histogram interpret ?
It shows the distribution of errors for the training, validation and test subsets.

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How can I reuse the same neural network to recreate the same results I had while training/creating the network?
I don't think you want to save the script. You want to save the net save net Hope this helps. Greg

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
neural network with bp algorithm
I have posted several examples. Search NEWSGROUP and ANSWERS using greg narxnet greg narnet greg timedelaynet Hope th...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Why do we need to compute power spectral density for eeg signal?
The obvious answer is that the presence of epilepsy is indicated by peaks in the PSD in certain frequency intervals.

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Why am i getting zero neurons in output layer of pattern net?
>thank u so much for being so helpful. but it is not working. in fact my input matrix (x) is 2321748x1 single and training matri...

mehr als 12 Jahre vor | 1

Beantwortet
How is the coefficient 'R' calculated in regression plots in neural network toolbox?
t = target y = output Cyt = corrcoef(y,t) R = Cyt(2,1)

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
Neural Network applied to compute square root
0. NOTATION: (input,hidden,target,output) = (x,h,t,y) 1. Probably need more than N = 10 data points 2. t(3) = 200 is an ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how can i use an image as a input to the artificial neural network? pls help me soon..,
Extract I features from each of N images. The size of the input and target matrices should be [ I N ] = size(input) [ O N ...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Why am i getting zero neurons in output layer of pattern net?
Unlike the obsolete functions newfit, newpr, newff, etc, that are created from x and t, the current functions fitnet, patternet,...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How to use Automatic Relevance Determination (ARD) to determine the window-size in time series forecasting
I am not familiar with ARD. I just use the significant lags in the input/target cross-correlation function and the target autoco...

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
Neural Network cross validation
Formatting not perfect; Did you cut and paste this version? Results? size(inputs) = ? size(targets) = ? Did you try ...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
NN accuracy on test set low
Insufficient info: How many characters? How many examples for each character? What are the dimensions of the input and ...

mehr als 12 Jahre vor | 2

Beantwortet
I need a Neural Network determining service availabilites through host availabilities using and emitting binary data (only 0 or 1)
The pattern fitting tool is the one to use. However, if you train with purelin or, better yet, logsig , you can always re...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Continuous outputs on Neural Networks
You have to have the same number of I dimensional "i"nput vectors and O dimensional "o"utput target vectors { I N ] = size(x...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
why we extract feature of eeg signal for network neural? (energy, energy power density, convariance, entropy)?
Feature extraction allows models to concentrate on the characteristics of the input data that are the most correlated with the d...

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
I am not able to use a trained neural network ?
[ I N ] = size(x) % [ 2 31 ] [O N ]= size(t)% [ 1 31] 1. For precision computing transform to zero mean and unit bia...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
fixunknows on nftool GUI matlab
I don't know for sure. However, I see no reason why you should not assume that functions called from command line and GUI use ...

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
When using pattern recognition tool in neural network start,I am unable to load target value data.I tried using column vector.
If this is pattern recognition with N I-dimensional input vectors from c classes, the columns of the target matrix should be u...

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
looking for a function similar to mapminmax
1. Convert targets to closed interval [0, 1] 2. Use LOGSIG for the output transfer function *Thank you for formally acce...

mehr als 12 Jahre vor | 1

| akzeptiert

Mehr laden