Answered
please how can build the following neural networks
See the help and documentation including examples, for the Neural Network Toolbox.

11 years ago | 0

| accepted

Answered
How to handle NaNs in neural network training data?
Do input and target NaNs match up? Are the NaNs isolated or do they occur in batches? If they are isolated you can look at...

11 years ago | 0

| accepted

Answered
How can predict multi step ahead using Narnet
%0. a. I do not have MATLAB on this computer, so some of my code comments may need correcting. % b. I will not complain if ...

11 years ago | 1

Answered
I want change the input value of the dynamic nenural network trainning
I may not understand your question. I interpret your question to involve a time-dependent delay vector. That is not allowed. ...

11 years ago | 0

| accepted

Answered
Determine function parameters with neural network
The function fitnet can be used to model bounded continuous functions given a sufficient number (N) of I-dimensional input/O-dim...

11 years ago | 0

| accepted

Answered
how can I predict streamflow discharge?
1. Standardize the data to have zero-error/unit-variance. 2. Remove or modify outliers 3. Find the statistically signific...

11 years ago | 0

| accepted

Answered
how can Levenberg Marquardt algorithm be implemented in script to train a neural network
help narxnet doc narxnet One hidden layer should be sufficient. However you should use the target autocorrelation and target...

11 years ago | 1

| accepted

Answered
Custom nonlinear neurons in neural network for stock/portfolio selection
The multilayer perceptron is a universal approximator. For regression use fitnet help fitnet doc fitnet For classi...

11 years ago | 1

| accepted

Answered
How to estimate sensitivites of a neural net model with exogenous variables?
Differentiate the corresponding equation. For example, differentiate w.r.t. x: y = b2 + LW * tansig( b1 + IW * x )

11 years ago | 0

| accepted

Answered
The traning is 100% but mistake in testing
Sounds like a classic case of overtraining an overfit net. You have too many unknown weights and/or not enough training equ...

11 years ago | 1

| accepted

Answered
neural network simulation in matlab
Please format your post to have one executable command per line. Use matrix commands instead of one for every matrix componen...

11 years ago | 0

| accepted

Answered
how can I use the neural network with deploytool ?
A pre-trained net is a net that has already been trained and then saved. Did you train the net named 'new' and then saved it?...

11 years ago | 0

| accepted

Answered
Using the Neural Network toolbox, why do I get more solutions than I should be getting?
Transpose your data matrices [ I N ] = size(Input) [ O N ] = size(Output) *Thank you for formally accepting my answer...

11 years ago | 0

| accepted

Answered
How to train a classifier and test it separately?
You can control the data division via net.divideFcn and net.divideParam help dividetrain doc dividetrain Hope this help...

11 years ago | 0

| accepted

Answered
Problem using NARX NN time series tool
[ I N ] = size(Input) [ O N ] = size(Output) P.S. posting the code in question generally gets faster answers than trying t...

11 years ago | 1

| accepted

Answered
How to use more than one training set for training a NARX neural network?
You are not going to be able to do it that way. 1. The net has to recognize which waveform is the input. a. How many w...

11 years ago | 0

Answered
how to get best result of plot confusion figure
Quick answer: Also use the confusion function and test on one or more MATLAB nndataset examples NOTE: I have removed some of...

11 years ago | 0

| accepted

Answered
How to use more than one training set for training a NARX neural network?
1. The system is not time-dependent because none of the weights depend on time. 2. Polynomial functions, sinusoids and their ...

11 years ago | 1

| accepted

Answered
Train ten numbers and identify new inserted number
http://www.mathworks.com/matlabcentral/newsreader/search_results.html?dur=all&page=1&query=greg+alphabet&search_string=greg+alph...

11 years ago | 2

| accepted

Answered
error in number of neruns
% >> help newff % newff Create a feed-forward backpropagation network. % Obsoleted in R2010b NNET 7.0. % Last used...

11 years ago | 0

| accepted

Answered
How can i predict data by using neural network from input after fitting the data??
Incorrect understanding: Generalization: Ability to perform well on nontraining data Overfitting: Number of training e...

12 years ago | 1

| accepted

Answered
How can i predict data by using neural network from input after fitting the data??
newoutput = net(newinput) *THank you for formally accepting my answer* Greg

12 years ago | 2

Answered
NARX closed loop performance for multi-step prediction
Compare with relevant searches closeloop maglev greg 4hits closeloop maglev 5 hits closeloop greg 66 ...

12 years ago | 1

| accepted

Answered
How detect by code which condition halted NN traning
>> [x,t] = simplefit_dataset; net = fitnet(10); [net tr] = train(net,x,t); stopcriteria = tr...

12 years ago | 0

| accepted

Answered
Neural Networks toolbox - How to choose which 'divideFcn' to use for time series prediction?
1. Standardize all signals to have zero-mean/unit-variance 2. Find the significant positive lags of the target autocorrelatio...

12 years ago | 2

| accepted

Answered
how to display (show) the similarty of test image in neural network
I cannot find a MATLAB code for a nearest-neighbor classifier. It looks like you'll have to code your own. Looking at the sou...

12 years ago | 1

| accepted

Answered
how to display (show) the similarty of test image in neural network
The answer to your question is: If you classify an input using a MLP like patternnet, you have to compare the input with every...

12 years ago | 1

Answered
MATLAB CODE FOR 1 HIDDEN LAYER
NEWSGROUP greg fitnet 22 hits ANSWERS greg fitnet 147 hits Which ones have no code?

12 years ago | 1

Answered
neural network tool box
Your data is woefully inadequate. Let [ I N ] = size(input) [ O N ] = size(target) Ntrn = N-2*round(0.15*N) % default...

12 years ago | 1

| accepted

Answered
character recognition using NuralNetwork or PRT toolbox
patternnet for classification and pattern-recognition fitnet for regression and curve-fitting Both call feedforwardnet ...

12 years ago | 1

| accepted

Load more