Clear Filters
Clear Filters

Width function on arrays

13 views (last 30 days)
mlam
mlam on 7 Sep 2015
Edited: Stephen23 on 15 Oct 2020
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.

Answers (1)

Stephen23
Stephen23 on 7 Sep 2015
Edited: Stephen23 on 15 Oct 2020
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)
You might like to read about multidimensional arrays to know how these are defined and accessed.
For the new data class tables you can use the width function to get how many variables there are in the table, and height to get the number of rows of the table.
  3 Comments
f
f on 15 Oct 2020
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

Sign in to comment.

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!