Array inside an array
조회 수: 111 (최근 30일)
이전 댓글 표시
I have to insert a 3x1 matrix into a another matrix where this 3x1 matrix would be the first element of that matrix. Can anyone please tell me how do i do that?
댓글 수: 0
답변 (2개)
Mario Malic
2021년 1월 24일
Hi,
You can do this with cell arrays
a =cell(3,1);
b = rand(3,1)
b =
0.8147
0.9058
0.1270
a{1} = b
a =
3×1 cell array
{3×1 double}
{0×0 double}
{0×0 double}
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!