Community Profile

photo

sethu


Active since 2015

Followers: 0   Following: 0

Message

Statistics

  • Thankful Level 1

View badges

Feeds

View by

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...

nästan 9 år ago | 1 answer | 0

1

answer

Question


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,...

nästan 9 år ago | 0 answers | 0

0

answers

Question


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...

nästan 9 år ago | 0 answers | 0

0

answers

Question


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...

nästan 9 år ago | 0 answers | 0

0

answers

Question


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...

nästan 9 år ago | 1 answer | 0

1

answer

Question


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) =[...

nästan 9 år ago | 1 answer | 0

1

answer

Question


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...

nästan 9 år ago | 1 answer | 0

1

answer

Question


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...

nästan 9 år ago | 2 answers | 0

2

answers