Respondida
Should modify the number of layers to make multi-step closed loop NarX
A single hidden layer is sufficient. Use the autocorrelation function of the target and the crosscorrelation function of the ...

más de 13 años hace | 0

Respondida
data preparation and format for NARX
I don't think your approach will work anywhere near as well as one that defines a trend in terms of a positive or negative slo...

más de 13 años hace | 0

Respondida
How are the input weights organized in a nonlinear autoregressive networks with an external input (narxnet)?
close all, clear all, clc; net = narxnet(10:15,10:15,10) % Removed semicolon % net.numInputs = 2 ...

más de 13 años hace | 0

| aceptada

Respondida
How are the input weights organized in a nonlinear autoregressive networks with an external input (narxnet)?
ID = 10:15; LID = length(ID) % 6 FD = 10:15; LFD = length(FD) % 6 H = 10 isequal( Xi , ...

más de 13 años hace | 0

Respondida
How are the input weights organized in a nonlinear autoregressive networks with an external input (narxnet)?
% net = narxnet(10:15,10:15,10) Why are the input and feedback delayed by 10 to 15 (6) timesteps? Are you trying to predic...

más de 13 años hace | 0

Respondida
how can i use principal component analysis for reduce the data point in signal
PCA is used to reduce the dimensionality of the data, not reduce the number of points. Hope this helps. Thank you for fo...

más de 13 años hace | 0

| aceptada

Respondida
How to create a Target data ? Neural Network Tool
The target for 2-class classification has dimensions [1 N] (N=306) with values {0,1}. However, if the ratio of N1/N0 is not in t...

más de 13 años hace | 1

| aceptada

Respondida
i have problem in ANN
This is not exceptional. NNets are good interpolators but very poor extrapolators. The basic assumption is that training d...

más de 13 años hace | 0

| aceptada

Respondida
some nftool basics - data in, net config, and net save
You have 1 5-dimensional input and 1 1-dimensional output. Therefore the sizes of your input and target matrices should be [ ...

más de 13 años hace | 0

Respondida
When change the Multi-dimentional input, how to show an offset on the output in neural network?
Pair each of your 32 voltage values with a corresponding irradiance value to get an input matrix of size [2 32]. The correspon...

más de 13 años hace | 0

| aceptada

Respondida
generate random negative numbers
x = a + (b-a)*rand(m,n); Hope this helps. Thank you for formally accepting my answer. Greg

más de 13 años hace | 2

Respondida
Taking DFT of Swept Sine Wave
Please do not use the acronym 'DFT' when you are using the 'FFT' close all,clear all, clc, plt = 0; N = 48 ...

más de 13 años hace | 0

| aceptada

Respondida
Why is fmincon giving me a wrong answer depending on which initial feasible point I am using?
Since the problem is only 2-dimensional, you can start by plotting the four separate contour plots of f, C1, C2 and C3. Then the...

más de 13 años hace | 1

Respondida
Neural network for multiple input and multi output (MIMO) systems
The typical NN is a MIMO function and the typical NNTBX design uses I-dimensional inputs [ I N ] = size(input) and O-dimen...

más de 13 años hace | 0

| aceptada

Respondida
neural network performance graph
MSE =0.008 means absolutely nothing untill it is normalized. The best normalization factor is the MSE you would obtain from a na...

más de 13 años hace | 1

Respondida
Ensemble Neural Network in Matlab
I did not look closely at your code. However, I have several comments: 1. If you are going to post data and/or code, make sur...

más de 13 años hace | 0

| aceptada

Respondida
Recognize the direction of the pedestrian action (right, left, forward, backward, ect) using Neural Network
If you have N pairs of I dimensional inputs and N corresponding classification indices (e.g., 1:O with O = 4 for right, left, fo...

más de 13 años hace | 0

| aceptada

Respondida
How to decide inputs and targets for neural networks for a signature verification system?
For an I-H-O = 15-H-20 classifier with N = 100 [ I N ] = size(input) [ O N ] = size(target) Columns of target are colum...

más de 13 años hace | 0

| aceptada

Respondida
How can I plot a neural network?
The only NNTBX display that is available is view(net) However, perhaps you can find something online. Hope this helps. ...

más de 13 años hace | 0

| aceptada

Respondida
can we execute neural network in loop?
Yes. I typically loop over 1. Number of hidden nodes (outer) 2. Number of trials for Random initial weights and random...

más de 13 años hace | 0

| aceptada

Respondida
How do I improve my neural network performance?
You have not given enough information. Regression or classification? What sizes are the input and target matrices? Are ...

más de 13 años hace | 3

Respondida
Do you have any special learning algorithm for binary inputs?
I have given a graciously lengthy answer to your questions in your Newsgroup Thread Subject: Neural Network with Binary Inpu...

más de 13 años hace | 2

| aceptada

Respondida
Time series prediction using multiple series
Before blindly using ANY time series function, determine which delays are significant. [ O N ] = size(t); O = 1 [I N ] = s...

más de 13 años hace | 1

| aceptada

Respondida
How do I give Images to neural network toolbox?
input = [image1(:),image2(:), ... image(N)]; class = [ 6, 8, ... 4 ]; target = ind2vec(class); Hope th...

más de 13 años hace | 0

| aceptada

Respondida
NN validation and data partition
There is an important difference between validation and testing. In the ideal scenario: There is only 1 subset to be used ...

más de 13 años hace | 0

| aceptada

Respondida
why is LinearModel.stepwise() so much slower than stepwisefit() ?
Stepwise involves human interaction. Thank you for formally accepting my answer. Greg

más de 13 años hace | 0

Respondida
how can I write the sourcecode for fingerprint identification?
Your best bet is to use your search engine. Try searching Google Groups (esp. MALAB )before Google Web.

más de 13 años hace | 0

Respondida
rectify error in kmeans
Reduce k by 1. Hope this helps. Thank you for formally accepting my answer. Greg

más de 13 años hace | 0

Respondida
How can i calculate the signal to noise ratio of a signal without knowing signal or noise power?
If the noise is additive with the majority of the noise power outside of the frequency range of the signal, the signal can be es...

más de 13 años hace | 1

| aceptada

Respondida
Warning: Imaginary parts of complex X and/or Y arguments ignored
That error message warns that you are trying to plot a complex function. Try whos to see which complex function you are tr...

más de 13 años hace | 0

Cargar más