Width function on arrays
22 次查看(过去 30 天)
显示 更早的评论
How do i use the width or height functions on a 3d array? For example, the array information i am using is that of a picture.
0 个评论
回答(1 个)
Stephen23
2015-9-7
编辑:Stephen23
2020-10-15
MATLAB does not have width or height functions for normal arrays. You can use size to get the size of an array:
d = size(X)
[m,n,p,~] = size(X)
m = size(X,dim)
You can select the dimension using the optional second argument:
rows = size(X,1)
cols = size(X,2)
pages = size(X,3)
3 个评论
f
2020-10-15
Just for future reference: as of R2020b, I think width and height have been added for arrays: https://it.mathworks.com/help/matlab/ref/width.html?s_tid=srchtitle
Stephen23
2020-10-15
编辑:Stephen23
2020-10-15
Indeed, just added to the latest release: https://www.mathworks.com/matlabcentral/discussions/highlights/133276-new-in-r2020b-new-way-to-return-height-or-width-of-arrays
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!