How to make a histogram for matrix array
1 次查看(过去 30 天)
显示 更早的评论
ind1 = 1:6;
for t2=1:length(mm_r)/6;
if t2 <= 6
wt_r = mm_r(1:361,1:361,ind1);
wint2_r(:,:,t2) = mean(wt_r,3); %wint2_r is of size 361*361*6
ind1 = ind1+6;
else
end
end
How can make a Histogram for each of the matrix of matrix array wint2_r
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!