当前位置:网站首页>[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 .

边栏推荐
- Baidu app's continuous integration practice based on pipeline as code
- From "chemist" to developer, from Oracle to tdengine, two important choices in my life
- 让AI替企业做复杂决策真的靠谱吗?参与直播,斯坦福博士来分享他的选择|量子位·视点...
- Tutorial on building a framework for middle office business system
- First understanding of structure
- Are databases more popular as they get older?
- Why does everyone want to do e-commerce? How much do you know about the advantages of online shopping malls?
- 卷起来,突破35岁焦虑,动画演示CPU记录函数调用过程
- Coffeescript Chinese character to pinyin code
- 一种用于干式脑电图的高密度256通道电极帽
猜你喜欢

Tongweb set gzip

ArcGIS Pro 创建要素

Tdengine already supports the industrial Intel edge insight package

The king of pirated Dall · e? 50000 images per day, crowded hugging face server, and openai ordered to change its name

【技术直播】如何用 VSCode 从 0 到 1 改写 TDengine 代码

What about wechat mall? 5 tips to clear your mind

Solve the problem of no all pattern found during Navicat activation and registration

Wechat applet - simple diet recommendation (2)

Getting started with Apache dolphin scheduler (one article is enough)

The writing speed is increased by dozens of times, and the application of tdengine in tostar intelligent factory solution
随机推荐
Online chain offline integrated chain store e-commerce solution
[NTIRE 2022]Residual Local Feature Network for Efficient Super-Resolution
卷起来,突破35岁焦虑,动画演示CPU记录函数调用过程
MySQL installation configuration and creation of databases and tables
单片机原理与接口技术(ESP8266/ESP32)机器人类草稿
Mobile heterogeneous computing technology GPU OpenCL programming (Advanced)
代码语言的魅力
一种用于干式脑电图的高密度256通道电极帽
Resolve the horizontal (vertical) sliding conflict between viewpager and WebView
tongweb设置gzip
How to implement complex SQL such as distributed database sub query and join?
MySQL character type learning notes
TDengine 连接器上线 Google Data Studio 应用商店
TDengine ×英特尔边缘洞见软件包 加速传统行业的数字化转型
Why don't you recommend using products like mongodb to replace time series databases?
Idea debugs com intellij. rt.debugger. agent. Captureagent, which makes debugging impossible
Node-RED系列(二九):使用slider与chart节点来实现双折线时间序列图
Tdengine offline upgrade process
Why does everyone want to do e-commerce? How much do you know about the advantages of online shopping malls?
Common fault analysis and Countermeasures of using MySQL in go language