【FNN预测】基于蝙蝠优化的模糊神经网络FNN研究附Matlab代码

2023-10-21 07:59

本文主要是介绍【FNN预测】基于蝙蝠优化的模糊神经网络FNN研究附Matlab代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

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

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

🍊个人信条:格物致知。

更多Matlab仿真内容点击👇

智能优化算法       神经网络预测       雷达通信       无线传感器        电力系统

信号处理              图像处理               路径规划       元胞自动机        无人机 

⛄ 内容介绍

耙吸挖泥船的耙头产量主要取决于耙头的吸入密度,准确的吸入密度预测对提高耙吸挖泥船疏浚产量具有重要的意义.针对目前对吸入密度预测方法存在精度低,实时效果性差的缺点,提出了一种蝙蝠算法与模糊神经网络相结合的预测方法.通过实测施工数据,构建BA-FNN预测模型.实验表明:BA-FNN预测精度高且稳定性能好,能够为耙头产量预测以及指导施工提供科学有效的参考依据.

⛄ 部分代码

% ======================================================== % 

% Files of the Matlab programs included in the book:       %

% Xin-She Yang, Nature-Inspired Metaheuristic Algorithms,  %

% Second Edition, Luniver Press, (2010).   www.luniver.com %

% ======================================================== %    

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

% Bat-inspired algorithm for continuous optimization (demo)%

% Programmed by Xin-She Yang @Cambridge University 2010    %

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

% Usage: bat_algorithm([20 1000 0.5 0.5]);                 %

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

% This is a simple demo version only implemented the basic          %

% idea of the bat algorithm without fine-tuning(微调)the parameters,     % 

% Then, though this demo works very well, it is expected that       %

% this demo is much less efficient than the work reported in        % 

% the following papers:                                             %

% (Citation details):                                               %

% 1) Yang X.-S., A new metaheuristic bat-inspired algorithm,        %

%    in: Nature Inspired Cooperative Strategies for Optimization    %

%    (NISCO 2010) (Eds. J. R. Gonzalez et al.), Studies in          %

%    Computational Intelligence, Springer, vol. 284, 65-74 (2010).  %

% 2) Yang X.-S., Nature-Inspired Metaheuristic Algorithms,          %

%    Second Edition, Luniver Presss, Frome, UK. (2010).             %

% 3) Yang X.-S. and Gandomi A. H., Bat algorithm: A novel           %

%    approach for global engineering optimization,                  %

%    Engineering Computations, Vol. 29, No. 5, pp. 464-483 (2012).  %

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

% Main programs starts here

function [best,fmin,N_iter]=bat_algorithm(para)

% Display help

 help bat_algorithm.m

% Default parameters 默认参数

if nargin<1,  para=[20 1000 0.5 0.5];  end

n=para(1);      % Population size, typically10 to 40

N_gen=para(2);  % Number of generations

A=para(3);      % Loudness  (constant or decreasing)

r=para(4);      % Pulse rate (constant or decreasing)

% This frequency range determines the scalings

% You should change these values if necessary

Qmin=0;         % Frequency minimum

Qmax=2;         % Frequency maximum

% Iteration parameters

N_iter=0;       % Total number of function evaluations  %这是什么意思???

% Dimension of the search variables

d=10;           % Number of dimensions 

% Lower limit/bounds/ a vector

Lb=-2*ones(1,d);

% Upper limit/bounds/ a vector

Ub=2*ones(1,d);   

% Initializing arrays

Q=zeros(n,1);   % Frequency

v=zeros(n,d);   % Velocities

% Initialize the population/solutions

for i=1:n,

  Sol(i,:)=Lb+(Ub-Lb).*rand(1,d);

  Fitness(i)=Fun(Sol(i,:));

end

% Find the initial best solution

[fmin,I]=min(Fitness);   %返回多个参数的时候用[ ],fmin接受第一个参数,I接受第二个参数

%这里fmin是最小值,I是最小值的索引,也就是第几个

best=Sol(I,:);

% ======================================================  %

% Note: As this is a demo, here we did not implement the  %

% reduction of loudness and increase of emission rates.   %

% Interested readers can do some parametric studies       %

% and also implementation various changes of A and r etc  %

% ======================================================  %

% Start the iterations -- Bat Algorithm (essential part)  %

for t=1:N_gen, 

% Loop over all bats/solutions

        for i=1:n,

          Q(i)=Qmin+(Qmin-Qmax)*rand;%其中rand产生一个0到1的随机数

          v(i,:)=v(i,:)+(Sol(i,:)-best)*Q(i);

          S(i,:)=Sol(i,:)+v(i,:);

          % Apply simple bounds/limits

          Sol(i,:)=simplebounds(Sol(i,:),Lb,Ub);

          % Pulse rate

          if rand>r

          % The factor 0.001 limits the step sizes of random walks 

              S(i,:)=best+0.001*randn(1,d);

          end

     % Evaluate new solutions

           Fnew=Fun(S(i,:));

     % Update if the solution improves, or not too loud

           if (Fnew<=Fitness(i)) & (rand<A) ,

                Sol(i,:)=S(i,:);

                Fitness(i)=Fnew;

           end

          % Update the current best solution

          if Fnew<=fmin,

                best=S(i,:);

                fmin=Fnew;

          end

        end

        N_iter=N_iter+n;

         

end

% Output/display

disp(['Number of evaluations: ',num2str(N_iter)]);

disp(['Best =',num2str(best),' fmin=',num2str(fmin)]);

% Application of simple limits/bounds

function s=simplebounds(s,Lb,Ub)

  % Apply the lower bound vector

  ns_tmp=s;

  I=ns_tmp<Lb;

  ns_tmp(I)=Lb(I);

  

  % Apply the upper bound vector 

  J=ns_tmp>Ub;

  ns_tmp(J)=Ub(J);

  % Update this new move 

  s=ns_tmp;

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

% Objective function: your own objective function can be written here

% Note: When you use your own function, please remember to 

%       change limits/bounds Lb and Ub (see lines 52 to 55) 

%       and the number of dimension d (see line 51). 

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

function z=Fun(u)

% Sphere function with fmin=0 at (0,0,...,0)

z=sum(u.^2);

%%%%% ============ end ====================================

⛄ 运行结果

⛄ 参考文献

[1]张容, 阎红, 杜丽萍. 基于模糊神经网络(FNN)的赤潮预警预测研究[J]. 海洋通报:英文版, 2006, 25(001):83-91.

[2]赵建强, 陈必科, 葛考, et al. 基于FOA—FNN算法的边坡稳定性评价研究[C]// 中国系统工程学会第十八届学术年会. 2014.

[3]郝光杰, 俞孟蕻, and 苏贞. "基于蝙蝠算法优化模糊神经网络的耙吸挖泥船耙头吸入密度研究." 计算机与数字工程 002(2022):050.

⛳️ 完整代码

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

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

这篇关于【FNN预测】基于蝙蝠优化的模糊神经网络FNN研究附Matlab代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/253022

相关文章

使用Python实现全能手机虚拟键盘的示例代码

《使用Python实现全能手机虚拟键盘的示例代码》在数字化办公时代,你是否遇到过这样的场景:会议室投影电脑突然键盘失灵、躺在沙发上想远程控制书房电脑、或者需要给长辈远程协助操作?今天我要分享的Pyth... 目录一、项目概述:不止于键盘的远程控制方案1.1 创新价值1.2 技术栈全景二、需求实现步骤一、需求

Java中Date、LocalDate、LocalDateTime、LocalTime、时间戳之间的相互转换代码

《Java中Date、LocalDate、LocalDateTime、LocalTime、时间戳之间的相互转换代码》:本文主要介绍Java中日期时间转换的多种方法,包括将Date转换为LocalD... 目录一、Date转LocalDateTime二、Date转LocalDate三、LocalDateTim

jupyter代码块没有运行图标的解决方案

《jupyter代码块没有运行图标的解决方案》:本文主要介绍jupyter代码块没有运行图标的解决方案,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录jupyter代码块没有运行图标的解决1.找到Jupyter notebook的系统配置文件2.这时候一般会搜索到

Python通过模块化开发优化代码的技巧分享

《Python通过模块化开发优化代码的技巧分享》模块化开发就是把代码拆成一个个“零件”,该封装封装,该拆分拆分,下面小编就来和大家简单聊聊python如何用模块化开发进行代码优化吧... 目录什么是模块化开发如何拆分代码改进版:拆分成模块让模块更强大:使用 __init__.py你一定会遇到的问题模www.

Mybatis 传参与排序模糊查询功能实现

《Mybatis传参与排序模糊查询功能实现》:本文主要介绍Mybatis传参与排序模糊查询功能实现,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、#{ }和${ }传参的区别二、排序三、like查询四、数据库连接池五、mysql 开发企业规范一、#{ }和${ }传参的

SpringBoot首笔交易慢问题排查与优化方案

《SpringBoot首笔交易慢问题排查与优化方案》在我们的微服务项目中,遇到这样的问题:应用启动后,第一笔交易响应耗时高达4、5秒,而后续请求均能在毫秒级完成,这不仅触发监控告警,也极大影响了用户体... 目录问题背景排查步骤1. 日志分析2. 性能工具定位优化方案:提前预热各种资源1. Flowable

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

C#使用SQLite进行大数据量高效处理的代码示例

《C#使用SQLite进行大数据量高效处理的代码示例》在软件开发中,高效处理大数据量是一个常见且具有挑战性的任务,SQLite因其零配置、嵌入式、跨平台的特性,成为许多开发者的首选数据库,本文将深入探... 目录前言准备工作数据实体核心技术批量插入:从乌龟到猎豹的蜕变分页查询:加载百万数据异步处理:拒绝界面