Is it possible to make pdf plot from matrix with mean value?
1 回表示 (過去 30 日間)
古いコメントを表示
need code for this type
0 件のコメント
回答 (3 件)
Yusuf Suer Erdem
2021 年 12 月 24 日
Try these codes below please;
clc;
clear;
close all;
Data=rand(32,247);
data_mean=mean(Data,2);
plot(data_mean);
ax = gca;
exportgraphics(ax,'LinePlot.pdf')
5 件のコメント
Yusuf Suer Erdem
2021 年 12 月 30 日
could u provide me your P matrix. put it in .mat file and share here please.
Yusuf Suer Erdem
2021 年 12 月 30 日
Let's see. I used these codes below and it did not give me error. But the 'P' matrix ' s values are pretty small. So I can not see them clearly on the graph.
x = double(P(:));
That command takes the P matrix and converts it into all column vector because fitdist() requires that.
clc; clear; close all;
load('P.mat');
x = double(P(:));
pd = fitdist(x,'Normal');
m = mean(pd);
x_pdf = [1:0.1:100];
y = pdf(pd,x_pdf);
figure
histogram(x,'Normalization','pdf')
line(x_pdf,y)
ax = gca;
exportgraphics(ax,'LinePlot.pdf')
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!