As both your objective function, and the constraint equations are linear, why did you not use linear programming techniques?
@elvinado2 жыл бұрын
It was a strange example as required by class assignment.
@amianifineug13532 жыл бұрын
please how calculate number of running if we have number of generation and population thank you
@ouadieelmrimar2102 жыл бұрын
hello sir thank you for this video, can you show us how we can plot the optimized parameters x1 and x2 on iterations ??
@amianifineug13532 жыл бұрын
please I want to custom plot ( I xant to plot fitness versus parameter) please how I dot thank you
@amianifineug13532 жыл бұрын
Thank you. Please how plot fitness function versus variable x
@elvinado2 жыл бұрын
Hi, I only use matlab for this assignment. I dont really know much. Sorry I cannot help you. I havent got Matlab in my current pc to find out how.
@amianifineug13532 жыл бұрын
Please when I have done save work space I did not get interface window like you. Please why I got file. Mat thank you
@putrafallo3074 Жыл бұрын
sir,, i want to ask you how to get power generation unit scheduling with power target for example 40 MW load on 5 power plant units using multi objective genetic algorithm optimizing tool...thankyou sir 🙏
@elvinado Жыл бұрын
Very sorry. Your question is very specific. And the video is only for a class assignment quite sometimes ago. I cannot answer your question.
@putrafallo3074 Жыл бұрын
@@elvinado okeyy thankyou sir 🙏
@ecekiran2 жыл бұрын
Sir I want genetic algorithm code for pmsm motor speed control
@variousvideos5542 жыл бұрын
function AR p1=2 p2=2 opts = optimoptions('ga',... 'PlotFcn',{@gaplotbestf},... 'Display','final',... 'PopulationSize',200,... 'CreationFcn',@gacreationuniform,... 'SelectionFcn',@selectionstochunif,... 'FitnessScalingFcn',@fitscalingrank,... 'EliteCount',3,... 'CrossoverFraction',0.8,... 'CrossoverFcn',@crossoverscattered,... 'MutationFcn',@mutationadaptfeasible,... 'MaxStallGenerations',50,... 'MaxGenerations',420); [x,fval]=ga(@cov,3,[],[],[],[],[5000 1000],[5000 1000],[],opts) function y = cov(x,p1,p2) for i=1:size(x,1) y(i) = 2*(3*x(i,1)+2*x(i,2))+x(i,3)+p1+p2 end end end