当前位置:网站首页>MATLAB小技巧(29)多项式拟合 plotfit
MATLAB小技巧(29)多项式拟合 plotfit
2022-07-07 02:33:00 【mozun2020】
MATLAB小技巧(29)多项式拟合 plotfit
前言
MATLAB进行图像处理相关的学习是非常友好的,可以从零开始,对基础的图像处理都已经有了封装好的许多可直接调用的函数,这个系列文章的话主要就是介绍一些大家在MATLAB中常用一些概念函数进行例程演示!
多项式拟合是用一个多项式展开去拟合包含数个分析格点的一小块分析区域中的所有观测点,得到观测数据的客观分析场。展开系数用最小二乘拟合确定。但此方法的区域多项式拟合并不稳定,当资料缺测时更是如此,而且会导致分析在拟合的各个区域之间不连续。
在数据分析预测时,较常见的拟合方法,通过最小二乘法得到拟合多项式,从而可以预测得到为之参数的预测值,搜寻资料的时候遇到的这个示例,这里分享给大家,本文示例仿真MATLAB版本为MATLAB2015b。
一. MATLAB仿真
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%功能:多项式拟合
%环境:Win7,Matlab2015b
%Modi: C.S
%时间:2022-06-28
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% I. 清空环境变量
clear all
clc
tic
y=[100.3 101.1 102.1 101.1 101.6 104.4 102.5 102.1 103.9 103.9];
x=1:length(y);
A=polyfit(x,y,2) %2次相拟合,这个2可以修改的 模型系数
Z=polyval(A,x); %预测y
len=[1:20];
len1=polyval(Z,len); %预测走势
result=[y;Z]%实际值与预测值
error=abs(y-Z);%误差
bfb=error./y%相对误差
errorsum=sum(error)/length(y)%平均误差
bfbsum=sum(bfb)/length(y)%平均相对误差
figure(1)
plot(x,y,'r-',x,Z,'b-')
legend('实际值','拟合值')
title('实际值与预测值的比较','fontsize',15)
ylabel('Y','fontsize',15)
xlabel('X','fontsize',15)
figure(2)
plot(len,len1,'b-')
legend('拟合曲线')
title('拟合曲线图','fontsize',15)
ylabel('Y','fontsize',15)
xlabel('X','fontsize',15)
toc
二. 仿真结果
A =
-0.0144 0.5159 100.0167
result =
100.3000 101.1000 102.1000 101.1000 101.6000 104.4000 102.5000 102.1000 103.9000 103.9000
100.5182 100.9909 101.4348 101.8500 102.2364 102.5939 102.9227 103.2227 103.4939 103.7364
bfb =
0.0022 0.0011 0.0065 0.0074 0.0063 0.0173 0.0041 0.0110 0.0039 0.0016
errorsum =
0.6300
bfbsum =
0.0061
时间已过 2.561846 秒。
三. 小结
多项式拟合的仿真示例,后期可能会用到,这里做个笔记。每天学一个MATLAB小知识,大家一起来学习进步阿!
边栏推荐
- 线性代数(一)
- C interview 24 (pointer) define a double array with 20 elements a
- Go straight to the 2022ecdc fluorite cloud Developer Conference: work with thousands of industries to accelerate intelligent upgrading
- [start from scratch] detailed process of deploying yolov5 in win10 system (CPU, no GPU)
- Redhat5 installing vmware tools under virtual machine
- Networkx绘图和常用库函数坐标绘图
- Cloudcompare point pair selection
- FlexRay通信协议概述
- Can't you really do it when you are 35 years old?
- MySQL卸载文档-Windows版
猜你喜欢
Abnova 膜蛋白脂蛋白体技术及类别展示
BindingException 异常(报错)处理
Haqi projection Black Horse posture, avec seulement six mois de forte pénétration du marché des projecteurs de 1000 yuans!
JESD204B时钟网络
二十岁的我4面拿到字节跳动offer,至今不敢相信
MySQL卸载文档-Windows版
Redis(一)——初识Redis
Redhat5 installing vmware tools under virtual machine
软件测试到了35岁,真的就干不动了吗?
反射(二)
随机推荐
循环肿瘤细胞——Abnova 解决方案来啦
How to use wechat cloud hosting or cloud functions for cloud development of unapp development applet
js装饰器@decorator学习笔记
企业如何进行数据治理?分享数据治理4个方面的经验总结
JVM in-depth
C面试24. (指针)定义一个含有20个元素的double型数组a
Postgresql源码(59)分析事务ID分配、溢出判断方法
算法---比特位计数(Kotlin)
Overview of FlexRay communication protocol
博士申请 | 上海交通大学自然科学研究院洪亮教授招收深度学习方向博士生
毕业设计游戏商城
Navicat importing 15g data reports an error [2013 - lost connection to MySQL server during query] [1153: got a packet bigger]
Wechat applet hides the progress bar component of the video tag
mobx 知识点集合案例(快速入门)
Prompt for channel security on the super-v / device defender side when installing vmmare
dolphinscheduler3. X local startup
Stack and queue-p79-10 [2014 unified examination real question]
项目实战 五 拟合直线 获得中线
HKUST & MsrA new research: on image to image conversion, fine tuning is all you need
剑指offer-高质量的代码