Express data in percentage
이전 댓글 표시
Hi everyone.
I need some help with smth that looks easy but I can't solve it.
I need to convert and express the y axis (LWP) in %
This is the code:
decsending_LWP 32x16x60 double
ascending_LWP 32x16x60 double
edges 1x45 double
h1 1x44 double
h2 1x44 double
lat 16x1 double
lon 32x1 double
time 32x16x60 int64
edges = [-0.1:0.025:1];
h1 = histcounts(ascending_LWP,edges);
h2 = histcounts(descending_LWP,edges);
figure
bar(edges(1:end-1),[h1; h2]')
grid on
xlabel('LWP bin');
ylabel('LWP');
Many thanks
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Noncentral t Distribution에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!