当前位置:网站首页>Matlab uses plotting method for data simulation and simulation
Matlab uses plotting method for data simulation and simulation
2022-08-05 00:32:00 【matlab_python22】
In matlab, we can use a lot of plotting methods to simulate and approximate the original data
The procedure is at the end of the article

It can be seen that the original data is obtained
If the original data is approximated with the real data, the results can be obtained as follows

It can be seen that this time the drawing point is better

Some friends will say, how to connect them in a straight line? There is a way. The result is as follows

Programs
clc
clear
close all
load('capall.mat')
x1=cap5(1:16)+rand(1,16);
figure
plot(x1,'->')
holdon
xx=[]
yy=[]
for i=1:16
[x,x2] = ginput(1)
plot(x,x2,'-*')
xx=[xx,x]
yy=[yy,x2]
hold on
end
figure
plot(xx,yy,'-*')
hold on
plot(x1)
legend('seconds','real')
边栏推荐
猜你喜欢

oracle创建用户以后的权限问题

could not build server_names_hash, you should increase server_names_hash_bucket_size: 32

刘润直播预告 | 顶级高手,如何创造财富

2022 Hangzhou Electric Power Multi-School Session 3 K Question Taxi

Will domestic websites use Hong Kong servers be blocked?

leetcode:266. 回文全排列

在线中文姓名生成工具推荐

QSunSync 七牛云文件同步工具,批量上传

英特尔WiFi 7产品将于2024年亮相 最高速度可达5.8Gbps

软件开发工具的技术要素
随机推荐
Software testing interview questions: What are the seven-layer network protocols?
2022牛客多校第三场 J题 Journey
软件测试面试题:黑盒测试、白盒测试以及单元测试、集成测试、系统测试、验收测试的区别与联系?
ARC129E Yet Another Minimization 题解 【网络流笔记】
QSunSync Qiniu cloud file synchronization tool, batch upload
软件测试面试题:关于自动化测试工具?
Software testing interview questions: Have you used some tools for software defect (Bug) management in your past software testing work? If so, please describe the process of software defect (Bug) trac
【论文笔记】—低照度图像增强—Unsupervised—EnlightenGAN—2019-TIP
标识符、关键字、常量 和变量(C语言)
lua 如何 实现一个unity协程的工具
Software Testing Interview Questions: What's the Key to a Good Test Plan?
在线中文姓名生成工具推荐
MAUI Blazor 权限经验分享 (定位,使用相机)
00、数组及字符串常用的 API(详细剖析)
ansible学习笔记分享-含剧本示例
uinty lua 关于异步函数的终极思想
【unity编译器扩展之模型动画拷贝】
canvas Gaussian blur effect
what?测试/开发程序员要被淘汰了?年龄40被砍到了32?一瞬间,有点缓不过神来......
2022牛客多校第三场 A Ancestor