Statistiques
8 Questions
0 Réponses
RANG
107 910
of 301 481
RÉPUTATION
0
CONTRIBUTIONS
8 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
50.0%
VOTES REÇUS
0
RANG
of 21 298
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 174 744
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
how to maximize one of the output and minimize the other output of gamultiobj?
i have three input parameters namely 1.) value of deformation 2.) solid solution time 3.) aging time and for those we have tw...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
How to get the outputs of every generation that is generated using ga and save it in workspace
suppose , i used objFcn =@(t) sim(net,t'); nvars =3; LB=[40,50,60]; UB=[90,110,100]; [X,FVAL] = gamultiobj(objFcn,nvars,...
presque 11 ans il y a | 1 réponse | 0
0
réponseQuestion
how to write the fitness function correctly?
function f =myfunc(t) r1 = @(v) v(1,:); r2 =@(v) v(2,:); f(:,1) =@(t) r1(sim(net,t')); f(:,2) =@(t) r2(1./sim(net,t')); end...
presque 11 ans il y a | 1 réponse | 0
0
réponseQuestion
how to minimize one of the output and maximize the other output of the trained neural network with in the given lower and upper bound using the ga.
i trained a neural network which has 3 input parameters and 2 outputs, if i want to minimize both the outputs i am using ob...
presque 11 ans il y a | 1 réponse | 0
0
réponseQuestion
how to write function file containing 2 objectives as the 2 seperated output functions of a neural network with 2 outputs.
i seperated 2 outputs of the single function {i.e, for "f = @(t) sim(net,t')"} by using row1 = @(v) v(1,:); first_outpu...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
how to access the outputs seperately?
suppose i have a function f(x) =@(t) sim(net,t'). It has 2 outputs how can i seperate them? example: f(1) = [1,2], f(2) =[...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
training the neural network and then maximising the outputs using genetic algorithm
this is my code for training data using code. inputs = [x1;x2;x3]; targets = [y1;y2]; hiddenlayersize = 10; net = f...
presque 11 ans il y a | 1 réponse | 0
1
réponseQuestion
how to write a code for fitness function(i don't have the exact fitness function but have the training data)?
i have training data with 3 input parameters and 2 output parameters, based on that I want to use neural network to train that d...
presque 11 ans il y a | 2 réponses | 0
