Answered
we have a set of experimental values which has 2 input and 2 output values. what is the simple prediction rule using Artificial Neural Network and Genetic Algorithm?
1. I cannot recommend the genetic algorithm for neural networks. So far I have seen no successful examples. For example, search ...

9 years ago | 0

| accepted

Answered
Adapt (Neural Network ToolBox ) - Error using .* Matrix dimensions must agree
0. NOTE: Quotation marks are only used for emphasis 1. Generally, N = 20 "N"umber of instances is not enough to adequately d...

9 years ago | 0

Answered
Time series prediction: R nearly 1 but MSE very high
The relationship between R and MSE is R = sqrt( 1 - MSE/mean(var(target',1))) Therefore the conclusion is that the mean t...

9 years ago | 0

| accepted

Answered
Same neural network training result each time at "dividerand" option
When you reboot, the RNG goes into the default state. Therefore begin with states different from default and 0. Hope this ...

9 years ago | 1

| accepted

Answered
Same neural network training result each time at "dividerand" option
You are mistaken. When the rng is repeatedly set to a certain value, The resulting string of PSEUDO-RANDOM numbers is repeate...

9 years ago | 0

Answered
How can I incorporate the adapt function into my code?
% I'm just a beginner when it comes to neural networks, and I can't seem to figure out how to incorporate the adapt function int...

9 years ago | 0

| accepted

Answered
Neural Network fitting toolbox (nftool). Input-output fitting problem.
help divideind doc divideind and https://www.google.com/?gws_rd=ssl#q=divideind Hope this helps. *Thank you for ...

9 years ago | 0

Answered
Problem: feed-forward neural network - the connection between the hidden layer and output layer is removed.
% Hi Greg and Brendan. Thanks for your reply. % % Well, after struggling reading the Matlab documentation, % I think I unde...

9 years ago | 1

| accepted

Answered
How can i train the hidden layer of a RBF NN?
Search both NEWREADER and ANSWERS using greg newrb You will find many training NEWRB examples. Make sure the example i...

9 years ago | 0

Answered
How to mute the popup window, when I run neural network in code ?
%Before training: net.trainParam.showWindow = 0; Hope this helps. *Thank you for formally accepting my answer* Greg...

9 years ago | 0

| accepted

Answered
Problem: feed-forward neural network - the connection between the hidden layer and output layer is removed.
Hi everybody. I am facing a strange problem with Matlab and, in particular, the training of a feed-forward neural networ...

9 years ago | 0

Answered
How to create a training data set?
Data consists of N pairs of I-dimensional "I"nputs and corresponding O-dimensional "O"utput targets. They are presented in 2 ...

9 years ago | 0

| accepted

Answered
Split array into training and testing
Your answer should be simply obtained from the divideblock documentation (help and/or doc). From the help documentation example ...

9 years ago | 1

Answered
Why do the outputs of a NARX Neural Network obtained with Simulink are different from the outputs obtained with Matlab script?
The timeseries for inputs should be rows, not columns Hope this helps. *Thank you for formally accepting my answer* Gre...

9 years ago | 0

| accepted

Answered
Prediction using Neural Network Toolbox
FITNET is the default MATLAB function for regression and curvefitting help fitnet doc fitnet Hope this helps *Thank...

9 years ago | 0

| accepted

Answered
How to build neaural network with given input and weight matrix?
% Use the help and doc commands for definitions with examples close all, clear all, clc [x,t] = iris_dataset; net1 = ...

9 years ago | 0

| accepted

Answered
Is it possible to get a valid or same results after each run of a matlab generated script on a saved narxnetwork by toolbox?
Try initializing the random number generator to the same initial state. For examples search the NEWSGROUP and ANSWERS using ...

9 years ago | 1

| accepted

Answered
Multiple input NARX?
Vector inputs and targets are relatively easy to use because the MATLAB equations are in matrix form. If you search for nonsc...

9 years ago | 0

Answered
Time-series forecasting from multiple timeseries
The MATLAB timeseries equations are valid for vectors. Therefore, multiple inputs and outputs are easily accommodated. The o...

9 years ago | 0

| accepted

Answered
How many degrees should be counted for computing the adjusted R^2 of a neural network?
Consider N pairs of I-dimensional "I" nput vectors and O-dimensional "O"utput target vectors. If Ntrn is the number of training ...

9 years ago | 0

| accepted

Answered
How do I get the mse after trainin a NN?
There is no reason to consider individual vector components. Rewrite your code in vector form like most of the code that is p...

9 years ago | 0

Answered
Neural network multiple output with different units
Standardize variables to zero mean and unit variance using ZSCORE. help zsore doc zscore Good designs will have MSE < 1...

9 years ago | 1

| accepted

Answered
nerual network not working????
Your input must have 13 rows and your target 1 row [ 13 N ] = size(input) [ 1 N ] = size(target) Hope this helps. *...

9 years ago | 0

Answered
How to disable popup of training windows for neural network in matlab
net is never defined. Hope this helps. Greg

9 years ago | 0

| accepted

Answered
how to predict future values?
If you need to predict 3 years ahead, then you should practice on data spaced 3 years apart. The autocorrelation function of...

9 years ago | 0

| accepted

Answered
how to get image after training in a neural network
Your output will be in matrix form which can be converted to an image. The type of image will determine the type of conversio...

9 years ago | 0

| accepted

Answered
i want use multi layer Perceptron not using nntool using this code
After reading the EXCEL files you have to convert them to MATLAB matrices with sizes [ I N ] = size(input) [ O N ] = siz...

9 years ago | 0

| accepted

Answered
How can i get a classifier at the neural network toolbox in matlab r2015b
Regression net: help fitnet doc fitnet Classifier net: help patternnet doc patternnet ALSO: You can search the...

9 years ago | 0

Answered
future value prediction using narx
Scanty info. [ Xc Xci Aci Tc ] = preparets(netc,X,{},T); [ Yc Xcf Acf ] = net(Xc, Xci, Aci); where (Xci,Aci) and (Xcf...

9 years ago | 0

| accepted

Load more