How to make a column of elements in a cell array be empty cell elements??

Suppose I have a 4x4 cell array,
x = num2cell(rand(4));
And i would like to make the first column of elements be empty cells. How do I do that?? I do not want to delete the column, I just want each element in that column to be empty. I tried using the following:
x{:,4} = [];
but i get this error. The right hand side of this assignment has too few values to satisfy the left hand side.

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 12월 30일
편집: Azzi Abdelmalek 2015년 12월 30일
x = [cell(4,1) num2cell(rand(4))]
Or maybe you want
x=num2cell(rand(4))
x(:,1)={[]}

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

질문:

2015년 12월 30일

편집:

2015년 12월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by