当前位置:网站首页>【 conseils 】 obtenir les valeurs des axes X et y de la fonction cdfplot dans MATLAB
【 conseils 】 obtenir les valeurs des axes X et y de la fonction cdfplot dans MATLAB
2022-07-05 10:06:00 【FPGA et MATLAB】
InmatlabEn passant parcdfplotTracer la courbe de la fonction de distribution cumulative des données,La procédure est la suivante::
clc;
clear;
close all;
warning off;
x = rand(1,1000).^4;
cdfplot(x)
Les résultats sont les suivants:
Alors, comment faire pourcdfplotPour obtenir la valeur correspondante?C'est très simple.,Nous ajustons la procédure ci - dessus comme suit.
clc;
clear;
close all;
warning off;
x = rand(1,1000).^4;
[xx]=cdfplot(x);
x1 = xx.XData;
y1 = xx.YData;
figure;
plot(x1,y1);
Après l'opération,Visible et directcdfplotLes résultats sont les mêmes pour,Ça montrex1Ety1DepuiscdfplotDonnées extraites de.
边栏推荐
- From "chemist" to developer, from Oracle to tdengine, two important choices in my life
- Node の MongoDB Driver
- First understanding of structure
- 代码语言的魅力
- 【OpenCV 例程200篇】219. 添加数字水印(盲水印)
- ArcGIS Pro creating features
- 卷起来,突破35岁焦虑,动画演示CPU记录函数调用过程
- Develop and implement movie recommendation applet based on wechat cloud
- MySQL character type learning notes
- MySQL installation configuration and creation of databases and tables
猜你喜欢
View Slide
基于模板配置的数据可视化平台
The writing speed is increased by dozens of times, and the application of tdengine in tostar intelligent factory solution
如何獲取GC(垃圾回收器)的STW(暫停)時間?
正式上架!TDengine 插件入驻 Grafana 官网
Oracle combines multiple rows of data into one row of data
Observation cloud and tdengine have reached in-depth cooperation to optimize the cloud experience of enterprises
Apache DolphinScheduler 系统架构设计
Application of data modeling based on wide table
mysql80服务不启动
随机推荐
7 月 2 日邀你来TD Hero 线上发布会
Optimize database queries using the cursor object of SQLite
Six simple cases of QT
Coordinate system of view
oracle和mysql批量Merge对比
双容水箱液位模糊PID控制系统设计与仿真(Matlab/Simulink)
TDengine 已经支持工业英特尔 边缘洞见软件包
About getfragmentmanager () and getchildfragmentmanager ()
[NTIRE 2022]Residual Local Feature Network for Efficient Super-Resolution
How Windows bat script automatically executes sqlcipher command
ArcGIS Pro 创建要素
Cent7 Oracle database installation error
百度交易中台之钱包系统架构浅析
Why does everyone want to do e-commerce? How much do you know about the advantages of online shopping malls?
Meitu lost 300 million yuan in currency speculation for half a year. Huawei was exposed to expand its enrollment in Russia. Alphago's peers have made another breakthrough in chess. Today, more big new
Implementation of smart home project
The essence of persuasion is to remove obstacles
idea用debug调试出现com.intellij.rt.debugger.agent.CaptureAgent,导致无法进行调试
Windows uses commands to run kotlin
MySQL character type learning notes