Answered
sensitivity analysis ANN
Please clarify your terminology. What are some examples of input parameters? Ditto for output parameters. For sensitivity a...

15 years ago | 0

| accepted

Answered
Non Linear regression
% name: myfun.m file function yhat = myfun(beta,X) b1 = beta(1); %(Freight multiplier) b2 = beta(2); %(Freight rate mul...

15 years ago | 0

| accepted

Answered
How to zero pad in frequency domain ?
fft fftshift zeropad both ends %different for N odd and N even ifftshift ifft % interpolates original...

15 years ago | 0

Answered
Neural networks training and 'removeconstantrows' process function
I assume your original input and target matrices have sizes [ 4480 N] = size(p) [ 330 N ] = size(t) Constant rows are ...

15 years ago | 0

Answered
Need help regarding fuzzy neural networks, genetic algortithms
I work with ANNs. However, your answer is too broad and imprecise for me to try to answer it completely in a few paragraphs. I a...

15 years ago | 0

| accepted

Answered
fft witout using fft function
Assuming you mean DFT with uniformly sampled time and frequency and not F(ast)FT, convert the summation in the documentation int...

15 years ago | 0

| accepted

Answered
Basic matrix equation Ax=B with restrictions
x = [ x1 ; x2 ]% x2 known A = [ A1 A2 ]% A1 & A2 known A*x = A1*x1 + A2*x2 % last term known A1*x1 = b - A2*x2 ...

15 years ago | 1

| accepted

Answered
rand('state',11)
rand is an obsolete random number generator that generates uniformly distributed outputs in the open interval (0,1). ran...

15 years ago | 8

| accepted

Answered
How to interpret the covariance matrix elements: diagonal versus off-diagonal terms
I need to factor the covariance matrix to get a feeling for the properties and associations of the individual variables. Co...

15 years ago | 0

| accepted

Answered
Character recognition
The best method depends on the particular data set. I have had very good results with neural networks. A newsgroup search ...

15 years ago | 0

| accepted

Answered
Different neural network training result each time
I suspect that similar results are obtained because the same RNG seed is used. See my previous comments about not resettin...

15 years ago | 0

Answered
determinant of singular matrix is non-zero
That is very interesting because obsolete Matlab 6.5 does yield 0. Greg

15 years ago | 0

Answered
problems with training function LVQ (example from help does not work)
Sorry for the formatting. This text editor sucks. Greg

15 years ago | 0

Answered
problems with training function LVQ (example from help does not work)
Nothing is wrong...it is a simple problem that only requires 2 or 3 epochs to obtain 0 error. You just didn't follow through. ...

15 years ago | 0

| accepted