Héctor Corte
NPL
Followers: 0 Following: 0
B.Sc. in Physics from the University of Oviedo, Spain, in 2010. M.Sc in complex systems from the UNED, Spain, in 2012. Currently working on: National Physical Laboratory, London, UK. Quantum Detection Group. Professional Interests: Neural networks, datamining, simulations
統計
All
Feeds
回答済み
Getframe to subplot
This code will fix your problem. clc; clear; A = 1; B = 2; C = 2; D = 2; E = 0; N = 15 s = -100:.001:1...
Getframe to subplot
This code will fix your problem. clc; clear; A = 1; B = 2; C = 2; D = 2; E = 0; N = 15 s = -100:.001:1...
13年弱 前 | 0
回答済み
Plotting separate points on the same graph while your program is running
Try this code: for j=1:5 %processes to find r.. r = %a certain value; plot (r,j); %plot must be inside th...
Plotting separate points on the same graph while your program is running
Try this code: for j=1:5 %processes to find r.. r = %a certain value; plot (r,j); %plot must be inside th...
13年弱 前 | 0
| 採用済み
回答済み
I already had a GUI which solves formula my problem how do i load and read the excel to my GUI?anyone can help?
I have just uploaded a file into Matlab FileExchange to this kind of questions. You can check it out here: http://www.mathwor...
I already had a GUI which solves formula my problem how do i load and read the excel to my GUI?anyone can help?
I have just uploaded a file into Matlab FileExchange to this kind of questions. You can check it out here: http://www.mathwor...
13年弱 前 | 0
回答済み
Need help using a for loop
Your first for should be: for i=1:length(A(:1)) and your second for should be: for i=length(ID):length(A(:1)) An...
Need help using a for loop
Your first for should be: for i=1:length(A(:1)) and your second for should be: for i=length(ID):length(A(:1)) An...
13年弱 前 | 0
回答済み
Help reading Excel files
With this code you get value on cell (A , fila): ActivesheetRange = get(Activesheet,'Range',['A',num2str(fila)]); To chec...
Help reading Excel files
With this code you get value on cell (A , fila): ActivesheetRange = get(Activesheet,'Range',['A',num2str(fila)]); To chec...
13年弱 前 | 0
回答済み
Curve pattern prediction - Interpolation (neural network)
This is not a trivial problem. A first aproximation can be done calculating the mean value of flowrate between 60 and 40 ºC. But...
Curve pattern prediction - Interpolation (neural network)
This is not a trivial problem. A first aproximation can be done calculating the mean value of flowrate between 60 and 40 ºC. But...
13年弱 前 | 0
| 採用済み
回答済み
neuron weights
If net is your network, the weigths of hidden layer i are in: net.LW{i+1,i} If you refer to the state of the neuron dur...
neuron weights
If net is your network, the weigths of hidden layer i are in: net.LW{i+1,i} If you refer to the state of the neuron dur...
13年弱 前 | 0
回答済み
Neural Network will not "Learn"
I have used your code and it works properly. What kind of error are you getting? I used x on interval [-2,10]. Note that with 20...
Neural Network will not "Learn"
I have used your code and it works properly. What kind of error are you getting? I used x on interval [-2,10]. Note that with 20...
13年弱 前 | 0
回答済み
Neural Networks Input Error
To calculate your net outputs to some inputs you should write: outputs=sim(net,inputs1)
Neural Networks Input Error
To calculate your net outputs to some inputs you should write: outputs=sim(net,inputs1)
13年弱 前 | 0
回答済み
share data between guis
Another way is to use global variables. But remember to write global variable_name in every place you use that variable. For e...
share data between guis
Another way is to use global variables. But remember to write global variable_name in every place you use that variable. For e...
13年弱 前 | 0