Answered
ABout LVQ neural network in matlab
> I'm using a Learning Vector Quantization network (LVQ) to classify data collected for deep brain stimulation. Why are you...

12 years ago | 1

| accepted

Answered
Hello I am trying to Use Neural Network for Flood Forecasting and , could someone please Help me.
http://www.mathworks.com/matlabcentral/answers/113395-flood-forecasting-feed-forward

12 years ago | 0

| accepted

Answered
Hello everyone, Help for Time series Problem In neural Network
http://www.mathworks.com/matlabcentral/answers/113395-flood-forecasting-feed-forward

12 years ago | 0

Answered
Calculate sine wave frequency using FFT
What, exactly do you not understand about the documentation example? doc fft *Thank you for formally accepting my answer*...

12 years ago | 0

Answered
How can i convert the numeric numbers stored in a table into the binary numbers with some condition?
I don't believe you are addressing the problem properly. How many inputs do you have? Standardize all inputs (zero-mean/un...

12 years ago | 0

Answered
flood forecasting feed forward
Forecasting implies predicting the future. If this is the case, use one of help narxnet % Delayed input and delaye...

12 years ago | 0

| accepted

Answered
I think no one will be able to answer this.........
Your question is ill-defined: You have not presented enough info. 1. Is the middle column the noisy signal? 2. Is the ...

12 years ago | 0

| accepted

Answered
How to normalize a data serie which have negative and positive values for Prediction through ANN?
Normalization to [ -1, 1] is a default for most of the ANN functions. This includes the most important timeseries functions time...

12 years ago | 1

Answered
How can i convert the numeric numbers stored in a table into the binary numbers with some condition?
Converting outputs to binary for classification and/or pattern recognition is highly recommended. However, converting input...

12 years ago | 0

Answered
Is the Matlab magnetic levitation model example correct?
If you Google differential equations magnetic levitation you will find the y^-2 form *Thank you for formally accepting...

12 years ago | 1

| accepted

Answered
stochastic gradient descent neural network updating net in matlab
Answer by Alper Alimoglu about 8 hours ago Edited by Alper Alimoglu about 8 hours ago My data set is formed by 1 000 000 da...

12 years ago | 0

Answered
How to forecast a temperature using neural networks??
1.Calculate the crosscorrelation function between inputs and target 2.Determine the significant lags 3.Calculate the targ...

12 years ago | 0

| accepted

Answered
stochastic gradient descent neural network updating net in matlab
1. http://en.wikipedia.org/wiki/Stochastic_gradient_descent 2. Use the largest nndataset in the NNTBX for an example hel...

12 years ago | 0

| accepted

Answered
What is the default function or range for initialization of the weights and bias in the Artificial Neural Network?
Nguyen-Widrow Algorithm help initnw doc initnw https://www.google.com/#q=nguyen+widrow+neural+networks Hope this h...

12 years ago | 0

Answered
Why is the mean square value changing to an another value for a different training function ?
help trainbr Note that "trainbr ... minimizes a combination of squared errors and weights" Hope this helps. Greg

12 years ago | 0

| accepted

Answered
Voice Recognition - how to add a threshold value ?
Consider this forced classification example rng(0) trueclassindices = [ randperm(10),randperm(10)]-1 % [ 5 2 6 7 4 0 1 3...

12 years ago | 0

| accepted

Answered
how to use neural networks in the diagnosis??
help patternnet doc patternnet The targets of the d diagnoses are represented by columns of the d-dimensional unit matrix ...

12 years ago | 0

| accepted

Answered
Predicting machine performance using neural network?
help fitnet doc fitnet ... ynew = net(xnew); If you want to look at some of my posts, comments and answers, search i...

12 years ago | 0

| accepted

Answered
What does OUtputs mean in neural network Tollbox ??
For c classes, targets should be columns of the unit matrix eye(c) [ c N ] = size(targets) trueclassindices = v...

12 years ago | 0

| accepted

Answered
How to compute the goodness of fit or the mean square error after training the neural network ?
The best figure of merit for classification and pattern recognition is a weighted average of between-class misclassification ra...

12 years ago | 0

| accepted

Answered
How to plot the NAR predicted values in matlab?
1. Use the Target autocorrelation function to determine a good set of feedback delays. Search the NEWSGROUP and ANSWERS usin...

12 years ago | 0

| accepted

Answered
How to find harmonic amplitude in a signal using neural network
A neural network cannot be used to implement the FFT function. A NN typically represents a point-to-point mapping between an ...

12 years ago | 0

| accepted

Answered
Fail to insert a dataset into an array.The array keeps showing that the dataset is an undefined function or variable
1. In all of the nndatasets in the NNTBX, the inputs and outputs have the same number of columns. help nndatasets doc nnda...

12 years ago | 0

Answered
how to improve performance of a neural network
% close all, clear all, clc, tic % [x,t]=bodyfat_dataset; % numtrain=20; % net=feedforwardnet(5); 1. Not enough hidden no...

12 years ago | 0

| accepted

Answered
How to find harmonic amplitude in a signal using neural network
Do not use a neural network. Use a DFT or, for equally-spaced FFT. help fft doc fft or search the NEWSGROUP using ...

12 years ago | 0

Answered
what Hidden Layers in Neural Network means, how to calculate the number of nodes in hidden layer?
Search the NEWSGROUP and ANSWERS using the search words number hidden nodes Hope this helps. Greg *Thank you for fo...

12 years ago | 0

| accepted

Answered
Matlab : how to get method 'tonndata' for input arguments for matlab?
Your version is too old function [x,wasMatrix,err] = tonndata(x,columnSamples,cellTime) %TONNDATA Convert data to stand...

12 years ago | 0

| accepted

Answered
i want to start working on forecasting stock market price using neural network? any advice...
Although there are only 9 hits in ANSWERS for the search keywords neural stock there are 48 in the NEWSGROUP. Hope thi...

12 years ago | 0

| accepted

Answered
plotregression fitlm rsquare difference
>> 0.98364^2 ans = 0.9675 *Thank you for formally accepting my answer* Greg

12 years ago | 1

| accepted

Load more