Respondida
ANN cannot extrapolate any data, which method can do?
ANN is non-parametric and model free, if your training sample small and doesn't really capture the empirical relationship really...

alrededor de 13 años hace | 1

Respondida
Can't See My Diary
try renaming the file in windows from lab03 -> lab03.txt and then open it in notepad.

alrededor de 13 años hace | 0

Respondida
Easy Question - Set Variable to Another Variable Using sprintf
S = load('MCNPdata.mat',sprintf(filespec,source_type,scan_height)); S is a structure and one of its elements will be the ...

alrededor de 13 años hace | 0

| aceptada

Respondida
Estimate differential equation parameters
You can set up an optimization problem to 'fit' your ode to the experimental data for certain parameters that minimize the error...

alrededor de 13 años hace | 1

| aceptada

Respondida
Correlation based on binary events
I suppose there are many ways to quantify, but you could try to compute the Mutual Information which gives a measure of the aver...

alrededor de 13 años hace | 0

Respondida
I am trying to simulate bifuracation diagram of simulink model described in paper" On the chaotic behaviour of Buck Conveter" I have tried my best but em not geeting the required results..
Is this something that might help you? https://www.mathworks.com/matlabcentral/fileexchange/26839-1d-bifurcation-plot

alrededor de 13 años hace | 0

| aceptada

Respondida
Neural network examples/books
Here is a list of all the authors part of the MathWorks book program who have written their text with MATLAB in mind: http://...

alrededor de 13 años hace | 0

| aceptada

Respondida
I want print the matrix, in orginal matrix from but it displays it as a series of coloumns.
Try: H_Mat=[1, 0, 1, 0, 1, 0, 1, 0; 1, 0, 0, 1, 0, 1, 0, 1; 0, 1, 1, 0, 0, 1, 1, 0; 0, 1, 0, 1, 1, 0, 0, 1]; dlmwri...

alrededor de 13 años hace | 0

Respondida
Newbie question about simulink "new" file format SLX
SLX is a compressed file that contains model information in XML format. There is information about the format. http://www.ma...

alrededor de 13 años hace | 1

Respondida
Possibilites about obtaining mathematical equation from neural network toolbox after training?
Neural Networks are non parametric methods, which means there are no parametrized equations. The model is expressed it as a weig...

alrededor de 13 años hace | 2

Respondida
How do I install fieldtrip toolbox
This is a 3rd party toolbox You should probably contact: http://fieldtrip.fcdonders.nl/contact To start with I would thin...

alrededor de 13 años hace | 0

Respondida
I need help for Genetic Algorithm
[Your link is dead] What have you tried so far using GA? like any optimization problem if you can set up your objective f...

alrededor de 13 años hace | 0

Respondida
Comparing multiple curves to an optimal curve
Depends on how you define your "perfect curve" there should be some criterion. Do you want to average it? If you want to fit the...

alrededor de 13 años hace | 0

Respondida
Add rows to txt file in order to create a matrix
You can keep this in a loop and use it as many times: dlmwrite('test.txt', rand(1,10), '-append','delimiter',' ') rand(1...

alrededor de 13 años hace | 1

Respondida
How to solve a linear equation with a variable inside the matrix,
clear all close all clc d=[0:50]; A=[1 1 1;10 28 40;144 -240 180]; B=[-40000;-40000;0]; F = zeros(3,numel(d)...

alrededor de 13 años hace | 0

| aceptada

Respondida
Creating mexw32 Files From 64-bit Matlab
I am afraid not. You can however simply keep a 32-Bit installation of MATLAB on the same machine 64-bit windows machine, just to...

alrededor de 13 años hace | 0

| aceptada

Respondida
finding approximate indices in a monotonically increasing array
You can use Nearest Neighbor search. If you have stats toolbox: f = knnsearch(t',ref) f = 139460 ...

alrededor de 13 años hace | 0

| aceptada

Respondida
fmincon stopping criteria problem
When it stops for TolCon, it mostly means there may be an optimal solution nearby but you can't reach it because the value at th...

alrededor de 13 años hace | 0

Respondida
convert the weight s of neural from float "double" to fixed ponit
Maybe this is helpful? http://www.mathworks.com/matlabcentral/fileexchange/5485-twos-complement-for-matlab

alrededor de 13 años hace | 0

Respondida
Finding the index value corresponding to a value closest to 0 in an array
Do you have the Stats toolbox? if you do then do a nearest neighbor search as follows: location = knnsearch(Temp',30); ...

alrededor de 13 años hace | 6

| aceptada

Respondida
how to store the intermediate result when using fmincon
You can use OutputFcn to access values at each iteration. See the following link for more information: http://www.mathwork...

alrededor de 13 años hace | 0

| aceptada

Respondida
Student asking for help(simple stuff)
Sounds like an assignment. Please read the getting started guide. And use the doc heavily. http://www.mathworks.com/help/matl...

alrededor de 13 años hace | 0

| aceptada

Respondida
Column of ONES in multiple regression
The columns of ones is for the intercept or the constant term as already pointed out above. Ax = b [a11 a12 1] [x1] ...

alrededor de 13 años hace | 0

| aceptada

Respondida
How should I manage the input on fmincon function?
A and b are linear constraints, if you don't have any linear constraints just use empty brackets. If you do then see the doc on ...

alrededor de 13 años hace | 0

Respondida
lsqcurvefit with nested sub-parameter/constraint
Relax the tolerance OPTIONS.TolFun, make it smaller than the default so your optimization can run longer. All iterative algorith...

alrededor de 13 años hace | 0

Respondida
problem with closeloop narx
This is what an open loop looks like during training: http://www.mathworks.com/help/nnet/ug/dynamic_narx_open.gif Since it...

alrededor de 13 años hace | 0

| aceptada

Respondida
Dimensional reduction by PCA
I think that the code expects you provide x' or x transpose where the rows are 500 and columns are 5

alrededor de 13 años hace | 0

| aceptada

Respondida
When using fprintf to format multiple strings, what does the integer after the % sign do?
It is the field width or the minimum numbers of characters to print. Check this link out: http://www.mathworks.com/help/ma...

alrededor de 13 años hace | 1

Respondida
I have 2 matrices, containing x,y data, how do i find the closest point and extract data about that point?
Why don't you use knnsearch in MATLAB and the indices of the point that is closest in B that in A, and use the index to extract ...

alrededor de 13 años hace | 1

| aceptada

Respondida
NEW USER-multiplying vectors
B = [7 -3 2] C = [5 4 2] E = B + C F = C.*B I really really really recommend you go through the getting started gui...

alrededor de 13 años hace | 1

Cargar más