photo

sethu


2015 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

8 質問
0 回答

ランク
208,171
of 300,853

評判
0

コントリビューション
8 質問
0 回答

回答採用率
50.0%

獲得投票数
0

ランク
 of 21,094

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 171,319

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年以上 前 | 0 件の回答 | 0

0

回答

質問


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年以上 前 | 0 件の回答 | 0

0

回答

質問


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年以上 前 | 0 件の回答 | 0

0

回答

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年以上 前 | 1 件の回答 | 0

1

回答

質問


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年以上 前 | 2 件の回答 | 0

2

回答