Statistics
4 Questions
0 Answers
RANK
72,191
of 301,432
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
25.0%
VOTES RECEIVED
0
RANK
of 21,280
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 174,555
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Discussions
AVERAGE NO. OF LIKES
Feeds
Question
I am trying to implement the NSGA code for my problem which has three decision variables(M) and two objectives(V), but some error is occuring saying not enough input arguments....Need some help!
function f = evaluate_objective(x, M, V) M = 2; V = 3; %% function f = evaluate_objective(x, M, V) % Function to evaluate th...
7 years ago | 0 answers | 0
0
answersQuestion
Inner Matrix Dimension must agree
Error using * Inner matrix dimensions must agree. K5 = 0.09*(L2/0.115) * (B.^4/(1-B.^4));
7 years ago | 2 answers | 0
2
answersQuestion
How can I implement the NSGA code mentined on the below link for multi-objective optimization?
< <</matlabcentral/answers/uploaded_files/135414/1234.jpg>> > Can anyone help me by solving the problem shown in the image...
7 years ago | 0 answers | 0
0
answersQuestion
I am getting an error in the code stating that,"Operands in the operator || and && must be convertible to scalar". I am very new to programming so can't really find out where the mistake is?
function K = Force(t) if (0 <= t)&&(t < 0.015) K = (58600180.67)*t + 66012.93; elseif (0.015 <= t)&&(t <= 0.068...
7 years ago | 1 answer | 0
