matlab - Converting 5D cell containing 1x5 double elements into matrix -


i have cell of dim x{5,5,5,7,4} , each element contains 1x5 double. want convert x cell matrix or double. when open x says elements 1x5 double. how this?

if of elements 1x5 double arrays, can use cat (combined {:} indexing) concatenate contents along first dimension

result = cat(1, x{:}) 

Comments

Popular posts from this blog

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -