基于存档的多目标算术优化 (MAOA)附matlab代码

该文介绍了MAOA(单胺氧化酶A)在神经递质中的作用,特别是其对血清素和去甲肾上腺素的影响。通过实验观察到MAOA缺失导致的行为异常和攻击性增加。此外,文章展示了使用MATLABR2022a实现的基于归档的多目标算法定量分析,并通过二维和三维图比较了真实前沿与获得的前沿。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。

🍎个人主页:Matlab科研工作室

🍊个人信条:格物致知。

⛄ 内容介绍

Monoamine oxidase A (MAOA) is a mitochondrial enzyme that inactivates neurotransmitters of the monoamine family such as dopamine, serotonin, and norepinephrine. MAOA and MAOB are encoded by separate genes on the X chromosome and share 70% amino acid similarity. This chapter presents a study in which a considerable increase was observed in the amount of serotonin in MAOA–/– pups, with a return to close to normal levels in older mice. Brain and liver MAOA activity was abolished in these mice. Mutant mice lacked the characteristic barrel-like clustering of layer IV neurons in the primary somatosensory cortex. MAOA–/– mice displayed a wide array of behavioral abnormalities from birth through maturity. Increased male aggessiveness and increased male–male wounding were also observed. The results of this chapter show that MAOA controls the amount of serotonin and norepinephrine in neurons, and may be linked to aggression.

⛄ 部分代码

%__________________________________________________________________ %

%                    Archive-based Multi-Objective                  %

%               Arithmetic Optimization Algorithm (MAOA)           %

%                                                                   %

%                                                                   %

%                  Developed in MATLAB R2022a (MacOs)               %

%                                                                   %

%                     Author and programmer                         %

%                ---------------------------------                  %

%                      Nima Khodadadi (蕵鈥渴�                         %

%                             e-Mail                                %

%                ---------------------------------                  %

%                         nkhod002@fiu.edu                          %

%                                                                   %

%                            Homepage                               %

%                ---------------------------------                  %

%                    https://nimakhodadadi.com                      %

%                                                                   %

%                                                                   %

%                                                                   %

%                                                                   %

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% ----------------------------------------------------------------------- %

close all;

clc;

% format long g

% Initial parameters of the MAOA algorithm

for j=8

    max_iter=100;

    Pop=100;

    ArchiveMaxSize=100;

    nvar=30;

    obj_no=2;

    method=3;

    Archive_F1=load(sprintf('P%d.txt',j));

    mkdir (sprintf('P%d',j))

    %-------------------------- MAOA -----------------------------------------

    for i=1 % Numbver of independent runs

        [Archive_F]=MAOA(max_iter,ArchiveMaxSize,Pop,nvar,method,j);

        if numel(Archive_F')==2

            continue

        end

        Archive_F=Archive_F';

        if obj_no==2

            plot(Archive_F1(:,1),Archive_F1(:,2),'Color','g','LineWidth',4);

            hold on

            plot(Archive_F(:,1),Archive_F(:,2),'ro','LineWidth',1,...

                'MarkerEdgeColor','b',...

                'MarkerFaceColor','r',...

                'Marker','o',...

                'MarkerSize',10);

            legend('True PF','Obtained PF');

            title(sprintf('MAOA FOR P%d PROBLEM',j));

            xlabel('obj_1');

            ylabel('obj_2');

            hold off

        end

        if obj_no==3

            plot3(Archive_F1(:,1),Archive_F1(:,2),Archive_F1(:,3),'Color','g','LineWidth',1);

            hold on

            plot3(Archive_F(:,1),Archive_F(:,2),Archive_F(:,3),'ro','LineWidth',1,...

                'MarkerEdgeColor','b',...

                'MarkerFaceColor','r',...

                'Marker','o',...

                'MarkerSize',10);

            legend('True PF','Obtained PF');

            title(sprintf('MAOA FOR P%d PROBLEM',j));

            xlabel('obj_1');

            ylabel('obj_2');

            zlabel('obj_3');

            hold off

        end

        savefig(sprintf('P%d/fig_%d.fig',j,i));

    end

    save(sprintf('P%d/result_P%d.mat',j,j));

end

⛄ 运行结果

⛄ 参考文献

[1] Mak T W ,  Penninger J ,  Roder J , et al. . MAOA[J]. The Gene Knockout FactsBook, 1998:705-706.

⛄ 完整代码

❤️部分理论引用网络文献,若有侵权联系博主删除

❤️ 关注我领取海量matlab电子书和数学建模资料

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值