当前位置:网站首页>[tips] get the x-axis and y-axis values of cdfplot function in MATLAB
[tips] get the x-axis and y-axis values of cdfplot function in MATLAB
2022-07-05 10:06:00 【FPGA and MATLAB】
stay matlab Through cdfplot Draw the cumulative distribution function curve of the data , The following procedure :
clc;
clear;
close all;
warning off;
x = rand(1,1000).^4;
cdfplot(x)
The operation results are as follows :
So how to get from cdfplot Get the corresponding value in ? It's simple , We will make the following adjustments to the above procedure .
clc;
clear;
close all;
warning off;
x = rand(1,1000).^4;
[xx]=cdfplot(x);
x1 = xx.XData;
y1 = xx.YData;
figure;
plot(x1,y1);
After operation , Visible and direct cdfplot The output of , This explanation x1 and y1 It's from cdfplot Data extracted from .
边栏推荐
- 搞数据库是不是越老越吃香?
- Node-RED系列(二九):使用slider与chart节点来实现双折线时间序列图
- 分布式数据库下子查询和 Join 等复杂 SQL 如何实现?
- 卷起来,突破35岁焦虑,动画演示CPU记录函数调用过程
- oracle 多行数据合并成一行数据
- 代码语言的魅力
- Windows uses commands to run kotlin
- How to empty uploaded attachments with components encapsulated by El upload
- Roll up, break through 35 year old anxiety, and animate the CPU to record the function call process
- [technical live broadcast] how to rewrite tdengine code from 0 to 1 with vscode
猜你喜欢
Single chip microcomputer principle and Interface Technology (esp8266/esp32) machine human draft
Unity粒子特效系列-毒液喷射预制体做好了,unitypackage包直接用 - 上
MySQL installation configuration and creation of databases and tables
Application of data modeling based on wide table
Roll up, break through 35 year old anxiety, and animate the CPU to record the function call process
cent7安装Oracle数据库报错
如何獲取GC(垃圾回收器)的STW(暫停)時間?
Dry goods sorting! How about the development trend of ERP in the manufacturing industry? It's enough to read this article
Six simple cases of QT
Viewpager pageradapter notifydatasetchanged invalid problem
随机推荐
Hard core, have you ever seen robots play "escape from the secret room"? (code attached)
Resolve the horizontal (vertical) sliding conflict between viewpager and WebView
How to get the STW (pause) time of GC (garbage collector)?
Comparison of batch merge between Oracle and MySQL
让AI替企业做复杂决策真的靠谱吗?参与直播,斯坦福博士来分享他的选择|量子位·视点...
Six simple cases of QT
TDengine可通过数据同步工具 DataX读写
移动端异构运算技术-GPU OpenCL编程(进阶篇)
Mysql80 service does not start
Windows uses commands to run kotlin
为什么不建议你用 MongoDB 这类产品替代时序数据库?
First understanding of structure
Is it really reliable for AI to make complex decisions for enterprises? Participate in the live broadcast, Dr. Stanford to share his choice | qubit · viewpoint
Jupiter notebook shortcut key
What are the advantages of the live teaching system to improve learning quickly?
Charm of code language
如何正确的评测视频画质
Idea debugs com intellij. rt.debugger. agent. Captureagent, which makes debugging impossible
Common fault analysis and Countermeasures of using MySQL in go language
高级 OpenCV:BGR 像素强度图