photo

sethu


Active since 2015

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

8 Questions
0 Answers

RANK
199,730
of 300,364

REPUTATION
0

CONTRIBUTIONS
8 Questions
0 Answers

ANSWER ACCEPTANCE
50.0%

VOTES RECEIVED
0

RANK
 of 20,934

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,407

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

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

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

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

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

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

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

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

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

10 years ago | 2 answers | 0

2

answers