Can you create a matrix where every element is a vector?

6 views (last 30 days)
I want to create a 3 dimensional matrix (i.e. 100*100*100) where every element in that matrix is a n-dimensional vector (i.e. (1,2,3)), there is any way or command to asign a vector to a element of my matrix?

Accepted Answer

KSSV
KSSV on 21 Oct 2021
You can consider each element as a cell. And then create a cell array. But why?
A = cell(2) ;
A{1,1}=rand(1,3) ;
A{1,2}=rand(1,3) ;
A{2,1}=rand(1,3) ;
A{2,2}=rand(1,3) ;
celldisp(A)
  1 Comment
JESUS LOPEZ ARENAL
JESUS LOPEZ ARENAL on 21 Oct 2021
I tried it and think it will work. Is for a simulation on material properties. Thanks you KSSV.

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays 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!